We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c358eb3 commit 3305423Copy full SHA for 3305423
1 file changed
.github/workflows/rust.yml
@@ -43,11 +43,11 @@ jobs:
43
steps:
44
- name: Checkout Sources
45
uses: actions/checkout@v4
46
- - name: Install Rust (thumbv7em)
+ - name: Install Rust (thumbv7em, x86_64-musl targets)
47
uses: dtolnay/rust-toolchain@master
48
with:
49
toolchain: ${{ matrix.rust }}
50
- target: thumbv7em-none-eabihf
+ target: thumbv7em-none-eabihf, x86_64-unknown-linux-musl
51
- name: Build - default features
52
run: cargo build
53
- name: Build - std
@@ -67,6 +67,8 @@ jobs:
67
tool: cargo-fuzz
68
- name: Fuzz (nightly only)
69
if: ${{ matrix.rust == 'nightly' }}
70
+ env:
71
+ RUSTFLAGS: "-C target-feature=-crt-static"
72
run: |
73
cargo +nightly fuzz run init -- -max_total_time=900
74
cargo +nightly fuzz run calibrate -- -max_total_time=1800
0 commit comments