Skip to content

Commit f701e29

Browse files
committed
ci: fix
1 parent ca2a6ba commit f701e29

1 file changed

Lines changed: 2 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
fail-fast: false
3737
matrix:
3838
plan:
39-
- { ghc: "912", stackyaml: "stack$ghc.yaml", stack: "stack --stack-yaml=$stackyaml" }
39+
- { ghc: "912", stack: "stack --stack-yaml=stack912.yaml" }
4040

4141
steps:
4242

@@ -89,25 +89,19 @@ jobs:
8989
- name: Install haskell deps
9090
env:
9191
stack: ${{ matrix.plan.stack }}
92-
stackyaml: ${{ matrix.plan.stackyaml }}
93-
ghc: ${{ matrix.plan.ghc }}
9492
run: |
9593
$stack build --test --bench --only-dependencies
9694
# --no-terminal
9795
9896
- name: Build all shelltestrunner modules warning free, optimised and minimised, and run any unit/doc/bench tests
9997
env:
10098
stack: ${{ matrix.plan.stack }}
101-
stackyaml: ${{ matrix.plan.stackyaml }}
102-
ghc: ${{ matrix.plan.ghc }}
10399
run: |
104100
$stack install --test --bench --force-dirty --ghc-options=-fforce-recomp --ghc-options=-Werror --ghc-options=-split-sections --no-terminal
105101
106102
- name: Run functional tests (excluding windows tests)
107103
env:
108104
stack: ${{ matrix.plan.stack }}
109-
stackyaml: ${{ matrix.plan.stackyaml }}
110-
ghc: ${{ matrix.plan.ghc }}
111105
run: |
112106
export PATH=~/.local/bin:$PATH
113-
make STACKYAMLOPT="--stack-yaml=$stackyaml" test
107+
make STACK="$stack" test

0 commit comments

Comments
 (0)