Skip to content

Commit

Permalink
WIP disable mingwW64 for now
Browse files Browse the repository at this point in the history
It causes evaluation errors on CI. While compiling GHC itself:
```
In file included from compiler/parser/cutils.c:6:0: error:

includes/Rts.h:29:10: error:
     fatal error: windows.h: No such file or directory
       29 | #include <windows.h>
          |          ^~~~~~~~~~~
   |
29 | #include <windows.h>
   |          ^
compilation terminated.
`cc' failed in phase `C Compiler'. (Exit code: 1)
```
  • Loading branch information
mrBliss committed Oct 1, 2020
1 parent ad3fb7b commit bc02d39
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions release.nix
Original file line number Diff line number Diff line change
Expand Up @@ -77,22 +77,22 @@ let

jobs = {
native = mapTestOn (__trace (__toJSON (packagePlatforms project)) (packagePlatforms project));
"${mingwW64.config}" = recursiveUpdate (mapTestOnCross mingwW64 (packagePlatformsCross project)) disabledMingwW64Tests;
#"${mingwW64.config}" = recursiveUpdate (mapTestOnCross mingwW64 (packagePlatformsCross project)) disabledMingwW64Tests;
# TODO: fix broken evals
#musl64 = mapTestOnCross musl64 (packagePlatformsCross project);
} // (mkRequiredJob (concatLists [
(collectJobs jobs."${mingwW64.config}".checks.tests)
# (collectJobs jobs."${mingwW64.config}".checks.tests)
(collectJobs jobs.native.checks)
(collectJobs jobs.native.benchmarks)
(collectJobs jobs.native.libs)
(collectJobs jobs.native.exes)
])) // {
# This is used for testing the build on windows.
ouroboros-network-tests-win64 = pkgs.callPackage ./nix/windows-testing-bundle.nix {
inherit project;
tests = collectJobs jobs."${mingwW64.config}".tests;
benchmarks = collectJobs jobs."${mingwW64.config}".benchmarks;
};
#ouroboros-network-tests-win64 = pkgs.callPackage ./nix/windows-testing-bundle.nix {
# inherit project;
# tests = collectJobs jobs."${mingwW64.config}".tests;
# benchmarks = collectJobs jobs."${mingwW64.config}".benchmarks;
#};
};

in jobs

0 comments on commit bc02d39

Please sign in to comment.