-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Add a job to check that the
wasm32-wasi
target builds (#117)
* 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
Showing
1 changed file
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |