Skip to content

Commit

Permalink
CI: Add a job to check that the wasm32-wasi target builds (#117)
Browse files Browse the repository at this point in the history
* CI: Add a job to check that the `wasm32-wasi` target builds

Part of #116.

* CI: Run checks against `wasm32-unknown-unknown` as well
  • Loading branch information
str4d authored Feb 27, 2024
1 parent c95ecdd commit 3838d78
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/wasm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: WASM

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]

jobs:
build:
name: Build target ${{ matrix.target }}
runs-on: ubuntu-latest
strategy:
matrix:
target:
- wasm32-unknown-unknown
- wasm32-wasi

steps:
- uses: actions/checkout@v4
with:
path: crates
# We use a synthetic crate to ensure no dev-dependencies are enabled, which can
# be incompatible with some of these targets.
- name: Create synthetic crate for testing
run: cargo init --lib ci-build
- name: Copy Rust version into synthetic crate
run: cp crates/rust-toolchain.toml ci-build/
- name: Copy patch directives into synthetic crate
run: |
echo "[patch.crates-io]" >> ./ci-build/Cargo.toml
cat ./crates/Cargo.toml | sed "0,/.\+\(patch.crates.\+\)/d" >> ./ci-build/Cargo.toml
- name: Add atrium-api as a dependency of the synthetic crate
working-directory: ./ci-build
run: >
cargo add
--path ../crates/atrium-api
- name: Add atrium-xrpc as a dependency of the synthetic crate
working-directory: ./ci-build
run: >
cargo add
--path ../crates/atrium-xrpc
- name: Add atrium-xrpc-client as a dependency of the synthetic crate
working-directory: ./ci-build
run: >
cargo add
--path ../crates/atrium-xrpc-client
--no-default-features
- name: Copy pinned dependencies into synthetic crate
run: cp crates/Cargo.lock ci-build/
- name: Add target
working-directory: ./ci-build
run: rustup target add ${{ matrix.target }}
- name: Build for target
working-directory: ./ci-build
run: cargo build --verbose --target ${{ matrix.target }}

0 comments on commit 3838d78

Please sign in to comment.