File tree Expand file tree Collapse file tree 1 file changed +3
-8
lines changed
Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change 2424 Uses nix to build with old GHC versions
2525 in dir = {TopDir}
2626 exec =
27- declare -a ghcvers=(810 90 92)
28- nix build --no-link --override-input nixpkgs github:nixos/nixpkgs/25.05 ${ghcvers[@]/#/.#tasty-sugar.ghc}
27+ nix build --no-link --override-input nixpkgs github:nixos/nixpkgs/25.05 $(for X in 810 90 92; do echo .#tasty-sugar.ghc$X; done)
2928 nix build --no-link .#tasty-sugar.ghc94
3029 nixbuild:recent
3130 Uses nix to build with recent GHC versions
3231 in dir = {TopDir}
33- exec =
34- declare -a ghcvers=(96 98)
35- nix build --no-link ${ghcvers[@]/#/.#tasty-sugar.ghc}
32+ exec = nix build --no-link .#tasty-sugar.ghc96 .#tasty-sugar.ghc98
3633 nixbuild
3734 Uses nix to build with current GHC versions
3835 in dir = {TopDir}
39- exec =
40- declare -a ghcvers=(910 912)
41- nix build --no-link ${ghcvers[@]/#/.#tasty-sugar.ghc}
36+ exec = nix build --no-link .#tasty-sugar.ghc910 .#tasty-sugar.ghc912
4237 nixbuild:all =
4338 Uses nix to build with all supported GHC versions =
4439 in dir = {TopDir}
You can’t perform that action at this time.
0 commit comments