Skip to content

Commit

Permalink
warn rather than fail on nightly builds (#1340)
Browse files Browse the repository at this point in the history
  • Loading branch information
demoray committed Aug 23, 2023
1 parent f442544 commit c947307
Showing 1 changed file with 24 additions and 4 deletions.
28 changes: 24 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,17 @@ jobs:
runs-on: ubuntu-20.04
needs:
- msrv
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
build:
- stable
- nightly
- ${{ 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 +57,17 @@ jobs:
runs-on: ubuntu-20.04
needs:
- msrv
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
build:
- stable
- nightly
- ${{ 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 +83,17 @@ jobs:
runs-on: ubuntu-20.04
needs:
- msrv
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
build:
- stable
- nightly
- ${{ 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 +107,17 @@ jobs:
runs-on: ubuntu-20.04
needs:
- msrv
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
build:
- stable
- nightly
- ${{ 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 c947307

Please sign in to comment.