Skip to content

Commit

Permalink
Disable building against the Beta toolchain.
Browse files Browse the repository at this point in the history
This is more fallout from
rust-lang/rust#129031 -- the lang team appears
to have relented, but removing this lint hasn't been backported into
Beta yet. So we're in a situation where traditional matches for
uninhabited types are fine on both stable and nightly, but failing on
beta.

Not sure what to do except disable beta.
  • Loading branch information
cbiffle committed Sep 17, 2024
1 parent c17afd7 commit ce747c7
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ jobs:
toolchain:
- stable
- nightly
- beta
#- beta TODO: re-enable once beta stops being broken, first release
#after 11 September should do it
steps:
- uses: actions/checkout@v4
- run: rm rust-toolchain.toml
Expand All @@ -77,7 +78,7 @@ jobs:
toolchain:
- stable
- nightly
- beta
# - beta TODO: re-enable, see above
needs: build_future
runs-on: ubuntu-latest
steps:
Expand All @@ -101,7 +102,7 @@ jobs:
toolchain:
- stable
- nightly
- beta
# - beta TODO: re-enable, see above
steps:
- uses: actions/checkout@v4
- run: rm rust-toolchain.toml
Expand Down

0 comments on commit ce747c7

Please sign in to comment.