Skip to content

Commit

Permalink
Merge #2707
Browse files Browse the repository at this point in the history
2707: release.nix: disable win32 builds of cardano-ping r=coot a=jbgi



Co-authored-by: Jean-Baptiste Giraudeau <jean-baptiste.giraudeau@iohk.io>
  • Loading branch information
iohk-bors[bot] and jbgi committed Oct 26, 2020
2 parents cd75e19 + 5745b66 commit 20a0a41
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions release.nix
Expand Up @@ -70,6 +70,8 @@ let
checksPaths = path: [ (["checks" "tests"] ++ path) ([ "haskellPackages" (head path) "checks" ] ++ (tail path)) ];
# as well as tests:
testsPaths = path: [ ([ "tests"] ++ path) ([ "haskellPackages" (head path) "components" "tests" ] ++ (tail path)) ];
# as well as exes:
exesPaths = path: [ ([ "exes"] ++ path) ([ "haskellPackages" (head path) "components" "exes" ] ++ (tail path)) ];
in
[ ["shell"] ]
++ (optionals (!withProblematicWindowsTests) (
Expand All @@ -84,6 +86,7 @@ let
))
++ (testsPaths ["ouroboros-network" "test-cddl"])
++ (checksPaths ["ouroboros-network" "test-cddl"])
++ (exesPaths ["network-mux" "cardano-ping"])
++ onlyBuildOnDefaultSystem;

# Remove build jobs for which cross compiling does not make sense.
Expand Down

0 comments on commit 20a0a41

Please sign in to comment.