mirror of
https://github.com/Cuprate/cuprate.git
synced 2025-03-12 09:29:11 +00:00
add 32 bit check to CI
This commit is contained in:
parent
d32002bdff
commit
345096044c
1 changed files with 27 additions and 0 deletions
27
.github/workflows/ci.yml
vendored
27
.github/workflows/ci.yml
vendored
|
@ -46,6 +46,33 @@ jobs:
|
|||
- name: Spell Check
|
||||
uses: crate-ci/typos@master
|
||||
|
||||
bit-32-support:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
crate: [
|
||||
cuprate-epee-encoding,
|
||||
cuprate-rpc-types,
|
||||
cuprate-fixed-bytes,
|
||||
cuprate-types
|
||||
]
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
|
||||
- name: Install Rust
|
||||
uses: dtolnay/rust-toolchain@master
|
||||
with:
|
||||
toolchain: stable
|
||||
targets: wasm32-unknown-unknown
|
||||
|
||||
- name: Build 32 bit
|
||||
run: cargo build --target wasm32-unknown-unknown -p ${{ matrix.crate }}
|
||||
|
||||
# All other CI.
|
||||
ci:
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
|
Loading…
Reference in a new issue