Skip to content

Commit 3271391

Browse files
authored
Merge branch 'master' into 2021-12-07-ci-bootstrap-org
2 parents 376daae + ddacbce commit 3271391

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,14 +141,14 @@ jobs:
141141

142142
- name: Set test options
143143
run: |
144-
echo "TEST_OPTS=-j1 --rerun-update --rerun-filter failures,exceptions,new" >> $GITHUB_ENV
144+
echo "TEST_OPTS=-j1 --rerun-update --rerun-filter failures,exceptions" >> $GITHUB_ENV
145145
146146
- name: Cache test log bewteen attempts of the same run
147147
uses: actions/cache@v2
148148
env:
149149
cache-name: cache-test-log
150150
with:
151-
path: .tasty-rerun-log
151+
path: "**/.tasty-rerun-log*"
152152
key: v1-${{ runner.os }}-${{ matrix.ghc }}-test-log-${{ github.sha }}
153153

154154
- if: needs.pre_job.outputs.should_skip_ghcide != 'true' && matrix.test
@@ -175,7 +175,7 @@ jobs:
175175
# all functional test cases simultaneously which causes way too many hls
176176
# instances to be spun up for the poor github actions runner to handle
177177

178-
run: cabal test wrapper-test --test-options="$TEST_OPTS" || cabal test wrapper-test --test-options="$TEST_OPTS" || cabal test wrapper-test --test-options="$TEST_OPTS"
178+
run: cabal test wrapper-test --test-options="$TEST_OPTS --rerun-log-file .tasty-rerun-log-wrapper" || cabal test wrapper-test --test-options="$TEST_OPTS --rerun-log-file .tasty-rerun-log-wrapper" || cabal test wrapper-test --test-options="$TEST_OPTS --rerun-log-file .tasty-rerun-log-wrapper"
179179

180180
- if: matrix.test && matrix.ghc != '9.0.1'
181181
name: Test hls-brittany-plugin

0 commit comments

Comments
 (0)