We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a98aef8 commit 0d14d5aCopy full SHA for 0d14d5a
.github/workflows/main.yml
@@ -33,6 +33,8 @@ jobs:
33
- uses: dtolnay/rust-toolchain@master
34
with:
35
toolchain: ${{ matrix.rust }}
36
+ # Add toolchain for no_std tests
37
+ - run: rustup target add aarch64-unknown-none
38
- run: cargo build --all-targets
39
# Run tests
40
- name: Run tests
@@ -49,6 +51,8 @@ jobs:
49
51
run: cargo test --test debugger_visualizer --features "url/serde,url/debugger_visualizer" -- --test-threads=1
50
52
- name: Test `no_std` support
53
run: cargo test --no-default-features --features=alloc
54
+ - name: Build `aarch64-unknown-none` with `no_std`
55
+ run: cargo +nightly build -Zbuild-std=core,alloc --target aarch64-unknown-none -v --release
56
57
WASM:
58
runs-on: ubuntu-latest
0 commit comments