We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63fa287 commit 5027e0aCopy full SHA for 5027e0a
.github/workflows/32bit.yml
@@ -0,0 +1,26 @@
1
+name: 32bit
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
10
11
+jobs:
12
+ build:
13
+ name: Build for 32-bit targets
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Checkout repository
17
+ uses: actions/checkout@v4
18
19
+ - name: Install stable toolchain
20
+ uses: dtolnay/rust-toolchain@stable
21
22
+ - name: Build for 32-bit architectures
23
+ run: |
24
+ rustup target add i686-unknown-linux-gnu wasm32-unknown-unknown
25
+ cargo build --target i686-unknown-linux-gnu
26
+ cargo build --target wasm32-unknown-unknown
0 commit comments