Skip to content

Commit ce747c7

Browse files
committed
Disable building against the Beta toolchain.
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.
1 parent c17afd7 commit ce747c7

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ jobs:
5858
toolchain:
5959
- stable
6060
- nightly
61-
- beta
61+
#- beta TODO: re-enable once beta stops being broken, first release
62+
#after 11 September should do it
6263
steps:
6364
- uses: actions/checkout@v4
6465
- run: rm rust-toolchain.toml
@@ -77,7 +78,7 @@ jobs:
7778
toolchain:
7879
- stable
7980
- nightly
80-
- beta
81+
# - beta TODO: re-enable, see above
8182
needs: build_future
8283
runs-on: ubuntu-latest
8384
steps:
@@ -101,7 +102,7 @@ jobs:
101102
toolchain:
102103
- stable
103104
- nightly
104-
- beta
105+
# - beta TODO: re-enable, see above
105106
steps:
106107
- uses: actions/checkout@v4
107108
- run: rm rust-toolchain.toml

0 commit comments

Comments
 (0)