Skip to content

Commit

Permalink
Merge branch 'master' into 2021-12-07-ci-bootstrap-org
Browse files Browse the repository at this point in the history
  • Loading branch information
jneira authored Dec 8, 2021
2 parents 376daae + ddacbce commit 3271391
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,14 +141,14 @@ jobs:

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

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

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"
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"

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

0 comments on commit 3271391

Please sign in to comment.