nim: disable Nim compiler check
Too many tests need to be disabled and too many additional inputs are required.
This commit is contained in:
parent
e37aa87642
commit
523b9f792f
@ -1,7 +1,7 @@
|
|||||||
# based on https://github.com/nim-lang/Nim/blob/v0.18.0/.travis.yml
|
# based on https://github.com/nim-lang/Nim/blob/v0.18.0/.travis.yml
|
||||||
|
|
||||||
{ stdenv, lib, fetchurl, makeWrapper, nodejs-slim, openssl, pcre, readline,
|
{ stdenv, lib, fetchurl, makeWrapper, openssl, pcre, readline,
|
||||||
boehmgc, sfml, tzdata, coreutils, sqlite }:
|
boehmgc, sfml, sqlite }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "nim";
|
pname = "nim";
|
||||||
@ -12,8 +12,6 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1rjinrs119c8i6wzz5fzjfml7n7kbd5hb9642g4rr8qxkq4sx83k";
|
sha256 = "1rjinrs119c8i6wzz5fzjfml7n7kbd5hb9642g4rr8qxkq4sx83k";
|
||||||
};
|
};
|
||||||
|
|
||||||
doCheck = !stdenv.isDarwin;
|
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
NIX_LDFLAGS = [
|
NIX_LDFLAGS = [
|
||||||
@ -24,15 +22,10 @@ stdenv.mkDerivation rec {
|
|||||||
"-lsqlite3"
|
"-lsqlite3"
|
||||||
];
|
];
|
||||||
|
|
||||||
# 1. nodejs is only needed for tests
|
# we could create a separate derivation for the "written in c" version of nim
|
||||||
# 2. we could create a separate derivation for the "written in c" version of nim
|
|
||||||
# used for bootstrapping, but koch insists on moving the nim compiler around
|
# used for bootstrapping, but koch insists on moving the nim compiler around
|
||||||
# as part of building it, so it cannot be read-only
|
# as part of building it, so it cannot be read-only
|
||||||
|
|
||||||
checkInputs = [
|
|
||||||
nodejs-slim tzdata coreutils
|
|
||||||
];
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
makeWrapper
|
makeWrapper
|
||||||
];
|
];
|
||||||
@ -56,46 +49,6 @@ stdenv.mkDerivation rec {
|
|||||||
runHook postBuild
|
runHook postBuild
|
||||||
'';
|
'';
|
||||||
|
|
||||||
prePatch =
|
|
||||||
let disableTest = ''sed -i '1i discard \"\"\"\n disabled: true\n\"\"\"\n\n' '';
|
|
||||||
disableStdLibTest = ''sed -i -e '/^when isMainModule/,/^END$/{s/^/#/}' '';
|
|
||||||
disableCompile = ''sed -i -e 's/^/#/' '';
|
|
||||||
in ''
|
|
||||||
substituteInPlace ./tests/osproc/tworkingdir.nim --replace "/usr/bin" "${coreutils}/bin"
|
|
||||||
substituteInPlace ./tests/stdlib/ttimes.nim --replace "/usr/share/zoneinfo" "${tzdata}/share/zoneinfo"
|
|
||||||
|
|
||||||
# runs out of memory on a machine with 8GB RAM
|
|
||||||
${disableTest} ./tests/system/t7894.nim
|
|
||||||
|
|
||||||
# requires network access (not available in the build container)
|
|
||||||
${disableTest} ./tests/stdlib/thttpclient.nim
|
|
||||||
'' + lib.optionalString stdenv.isAarch64 ''
|
|
||||||
# supposedly broken on aarch64
|
|
||||||
${disableStdLibTest} ./lib/pure/stats.nim
|
|
||||||
|
|
||||||
# reported upstream: https://github.com/nim-lang/Nim/issues/11463
|
|
||||||
${disableCompile} ./lib/nimhcr.nim
|
|
||||||
${disableTest} ./tests/dll/nimhcr_unit.nim
|
|
||||||
${disableTest} ./tests/dll/nimhcr_integration.nim
|
|
||||||
|
|
||||||
# reported upstream: https://github.com/nim-lang/Nim/issues/12262
|
|
||||||
${disableTest} ./tests/range/tcompiletime_range_checks.nim
|
|
||||||
|
|
||||||
# requires "immintrin.h" which is available only on x86
|
|
||||||
${disableTest} ./tests/misc/tsizeof3.nim
|
|
||||||
'';
|
|
||||||
|
|
||||||
checkPhase = ''
|
|
||||||
runHook preCheck
|
|
||||||
|
|
||||||
# Fortify hardening breaks tests
|
|
||||||
# https://github.com/nim-lang/Nim/issues/11435#issuecomment-534545696
|
|
||||||
NIX_HARDENING_ENABLE=''${NIX_HARDENING_ENABLE/fortify/} \
|
|
||||||
./koch tests --nim:bin/nim all
|
|
||||||
|
|
||||||
runHook postCheck
|
|
||||||
'';
|
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
runHook preInstall
|
runHook preInstall
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user