Skip to content

Commit 35663b5

Browse files
authored
Merge pull request #1206 from rust-osdev/bishop-nightly-allow-warn
ci: Temporarily turn off warnings-as-errors for nightly CI jobs
2 parents eebe698 + 716f9bc commit 35663b5

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/rust.yml

+10
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,11 @@ jobs:
123123
build_feature_permutations:
124124
name: Build (feature permutations)
125125
runs-on: ubuntu-latest
126+
env:
127+
# TODO: temporarily allow warnings to not be errors on nightly due to
128+
# incorrect dead_code lint.
129+
# https://github.com/rust-osdev/uefi-rs/issues/1205
130+
RUSTFLAGS: ""
126131
steps:
127132
- name: Checkout sources
128133
uses: actions/checkout@v4
@@ -134,6 +139,11 @@ jobs:
134139
nightly_channel:
135140
name: Build (nightly + unstable feature)
136141
runs-on: ubuntu-latest
142+
env:
143+
# TODO: temporarily allow warnings to not be errors on nightly due to
144+
# incorrect dead_code lint.
145+
# https://github.com/rust-osdev/uefi-rs/issues/1205
146+
RUSTFLAGS: ""
137147
steps:
138148
- name: Checkout sources
139149
uses: actions/checkout@v4

0 commit comments

Comments
 (0)