Skip to content

Commit

Permalink
warn rather than fail on nightly builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Caswell committed Aug 22, 2023
1 parent d7a2989 commit a55c992
Showing 1 changed file with 24 additions and 16 deletions.
40 changes: 24 additions & 16 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,14 @@ jobs:
runs-on: ubuntu-20.04
needs:
- msrv
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
build:
- stable
- nightly
- ${{ needs.msrv.outputs.msrv }}
build: [stable, ${{ needs.msrv.outputs.msrv }}]
experimental: [false]
include:
- build: nightly
- experimental: true
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
Expand All @@ -52,12 +54,14 @@ jobs:
runs-on: ubuntu-20.04
needs:
- msrv
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
build:
- stable
- nightly
- ${{ needs.msrv.outputs.msrv }}
build: [stable, ${{ needs.msrv.outputs.msrv }}]
experimental: [false]
include:
- build: nightly
- experimental: true
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
Expand All @@ -73,12 +77,14 @@ jobs:
runs-on: ubuntu-20.04
needs:
- msrv
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
build:
- stable
- nightly
- ${{ needs.msrv.outputs.msrv }}
build: [stable, ${{ needs.msrv.outputs.msrv }}]
experimental: [false]
include:
- build: nightly
- experimental: true
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
Expand All @@ -92,12 +98,14 @@ jobs:
runs-on: ubuntu-20.04
needs:
- msrv
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
build:
- stable
- nightly
- ${{ needs.msrv.outputs.msrv }}
build: [stable, ${{ needs.msrv.outputs.msrv }}]
experimental: [false]
include:
- build: nightly
- experimental: true
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
Expand Down

0 comments on commit a55c992

Please sign in to comment.