Skip to content

Commit

Permalink
ci: test UEFI with std (#567)
Browse files Browse the repository at this point in the history
Additionally disables build for `x86_64-unknown-l4re-uclibc` since its
`std` is currently broken.
  • Loading branch information
newpavlov authored Dec 18, 2024
1 parent 9195c09 commit e27f6ec
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,14 +165,13 @@ jobs:
- name: Build
run: cargo build --target ${{ matrix.target.target }} ${{ matrix.feature.feature }} -Zbuild-std=${{ matrix.feature.build-std }}

rdrand:
name: RDRAND
rdrand-uefi:
name: RDRAND UEFI
runs-on: ubuntu-24.04
strategy:
matrix:
target: [
x86_64-unknown-uefi,
x86_64-unknown-l4re-uclibc,
i686-unknown-uefi,
]
steps:
Expand All @@ -184,6 +183,9 @@ jobs:
- env:
RUSTFLAGS: -Dwarnings --cfg getrandom_backend="rdrand"
run: cargo build -Z build-std=core --target=${{ matrix.target }}
- env:
RUSTFLAGS: -Dwarnings --cfg getrandom_backend="rdrand"
run: cargo build -Z build-std=std --target=${{ matrix.target }} --features std

rndr:
name: RNDR
Expand Down

0 comments on commit e27f6ec

Please sign in to comment.