Skip to content

Commit

Permalink
Fix ci.nix expression
Browse files Browse the repository at this point in the history
  • Loading branch information
paluh committed Aug 10, 2022
1 parent 6e8bcbd commit 76cdade
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ci.nix
Expand Up @@ -99,7 +99,7 @@ let
haskell = pkgs.recurseIntoAttrs (mkHaskellDimension pkgs marlowe.haskell.projectPackages);
}));
in
dimension "System" systems (name: sys: _select name sys null);
// dimension "Cross System" crossSystems (name: crossSys: _select name "x86_64-linux" crossSys);
in
mkSystemDimension systems
dimension "System" systems (name: sys: _select name sys null)
// dimension "Cross System" crossSystems (name: crossSys: _select name "x86_64-linux" crossSys);
in
mkSystemDimension systems

0 comments on commit 76cdade

Please sign in to comment.