We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b840ddb commit 9f80c2cCopy full SHA for 9f80c2c
1 file changed
.github/workflows/rustls-rustcrypto.yml
@@ -54,8 +54,26 @@ jobs:
54
- 1.85.0 # MSRV
55
- stable
56
target:
57
- # - armv7a-none-eabi
58
- # - thumbv7em-none-eabi
+ - armv7a-none-eabi # Actually requires a custom backend
+ - thumbv7em-none-eabi # Actually requires a custom backend
59
+ steps:
60
+ - uses: actions/checkout@v4
61
+ - uses: dtolnay/rust-toolchain@master
62
+ with:
63
+ toolchain: ${{ matrix.rust }}
64
+ targets: ${{ matrix.target }}
65
+ - env:
66
+ RUSTFLAGS: --cfg getrandom_backend="unsupported"
67
+ run: cargo build --no-default-features --features tls12,alloc --release --target ${{ matrix.target }}
68
+
69
+ wasm_js:
70
+ runs-on: ubuntu-latest
71
+ strategy:
72
+ matrix:
73
+ rust:
74
+ - 1.85.0 # MSRV
75
+ - stable
76
+ target:
77
- wasm32-unknown-unknown
78
steps:
79
- uses: actions/checkout@v4
0 commit comments