Skip to content

Commit

Permalink
ci: only use latest nightly for coverage
Browse files Browse the repository at this point in the history
keeping some configuration to adapt for additional pinned nightly if
needed again
  • Loading branch information
YeungOnion committed Sep 18, 2024
1 parent 3c3cb4d commit a514992
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@ on:
branches: [ master ]
jobs:
coverage:
timeout-minutes: ${{ matrix.toolchain == 'nightly' && 10 || 360 }} # 360 mins is gh actions default
continue-on-error: ${{ matrix.toolchain == 'nightly' }}
strategy:
strategy: # allows pinning additional nightly
fail-fast: false # allows continue past failure of one toolchain if multiple
matrix:
toolchain: [nightly-2024-09-01, nightly]
toolchain: [ nightly ]

# 360 mins is gh actions default
timeout-minutes: ${{ matrix.toolchain == 'nightly' && 10 || 360 }}

name: Coverage
runs-on: ubuntu-latest
Expand Down

0 comments on commit a514992

Please sign in to comment.