Skip to content

Commit

Permalink
tweak CI
Browse files Browse the repository at this point in the history
  • Loading branch information
newpavlov committed Oct 14, 2024
1 parent 04f706d commit 9da0960
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/nopanic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,14 @@ jobs:
- name: Check (getentropy.rs)
run: ret=$(grep panic target/release/libgetrandom_wrapper.so; echo $?); [ $ret -eq 1 ]

- name: Build (rndr.rs)
env:
RUSTFLAGS: -Dwarnings --cfg getrandom_backend="rndr"
run: cargo build --release
- name: Check (rndr.rs)
run: ret=$(grep panic target/release/libgetrandom_wrapper.so; echo $?); [ $ret -eq 1 ]

- name: Build (apple-other.rs)
run: cargo build --release --target=aarch64-apple-ios
- name: Check (apple-other.rs)
run: ret=$(grep panic target/aarch64-apple-ios/release/libgetrandom_wrapper.so; echo $?); [ $ret -eq 1 ]

- name: Build (rndr.rs)
env:
RUSTFLAGS: -Dwarnings --cfg getrandom_backend="rndr" -C target-feature=+rand
run: cargo build --release --target=aarch64-apple-ios
- name: Check (rndr.rs)
run: ret=$(grep panic target/aarch64-apple-ios/release/libgetrandom_wrapper.so; echo $?); [ $ret -eq 1 ]

0 comments on commit 9da0960

Please sign in to comment.