Skip to content

Commit e27f6ec

Browse files
authored
ci: test UEFI with std (#567)
Additionally disables build for `x86_64-unknown-l4re-uclibc` since its `std` is currently broken.
1 parent 9195c09 commit e27f6ec

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/build.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -165,14 +165,13 @@ jobs:
165165
- name: Build
166166
run: cargo build --target ${{ matrix.target.target }} ${{ matrix.feature.feature }} -Zbuild-std=${{ matrix.feature.build-std }}
167167

168-
rdrand:
169-
name: RDRAND
168+
rdrand-uefi:
169+
name: RDRAND UEFI
170170
runs-on: ubuntu-24.04
171171
strategy:
172172
matrix:
173173
target: [
174174
x86_64-unknown-uefi,
175-
x86_64-unknown-l4re-uclibc,
176175
i686-unknown-uefi,
177176
]
178177
steps:
@@ -184,6 +183,9 @@ jobs:
184183
- env:
185184
RUSTFLAGS: -Dwarnings --cfg getrandom_backend="rdrand"
186185
run: cargo build -Z build-std=core --target=${{ matrix.target }}
186+
- env:
187+
RUSTFLAGS: -Dwarnings --cfg getrandom_backend="rdrand"
188+
run: cargo build -Z build-std=std --target=${{ matrix.target }} --features std
187189

188190
rndr:
189191
name: RNDR

0 commit comments

Comments
 (0)