File tree 2 files changed +9
-9
lines changed
2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -48,12 +48,4 @@ steps:
48
48
# Stack via stack2nix
49
49
50
50
- label : static-stack
51
- # TODO: Remove the override of unix-compat below once that's available in stack
52
- command : |
53
- set -eu -o pipefail
54
-
55
- cd static-stack/
56
- mkdir -p static-stack-test-dir
57
- curl -L https://github.com/commercialhaskell/stack/archive/v2.7.1.tar.gz | tar -xz -C static-stack-test-dir
58
-
59
- $(nix-build --no-link -A fullBuildScript --argstr stackDir $PWD/static-stack-test-dir/stack-*)
51
+ command : " cd static-stack && ./build-static-stack.sh"
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ set -eu -o pipefail
4
+
5
+ mkdir -p static-stack-test-dir
6
+ curl -L https://github.com/commercialhaskell/stack/archive/v2.7.1.tar.gz | tar -xz -C static-stack-test-dir
7
+
8
+ $( nix-build --no-link -A fullBuildScript --argstr stackDir $PWD /static-stack-test-dir/stack-* )
You can’t perform that action at this time.
0 commit comments