Skip to content

Commit

Permalink
Merge pull request wasmerio#328 from wasmerio/wasix
Browse files Browse the repository at this point in the history
Implement WASIX
  • Loading branch information
Michael Bryan authored Nov 21, 2023
2 parents 80b1583 + 0a62cac commit 30f7a45
Show file tree
Hide file tree
Showing 50 changed files with 7,177 additions and 3,167 deletions.
13 changes: 13 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[build]
target = "wasm32-unknown-unknown"

[target.'cfg(target_arch = "wasm32")']
# Use "wasmer" for running tests when compiled to WebAssembly
runner = ["wasmer", "run"]
# This is needed so the module is compiled with atomics support (shared memory)
# We add the `-no-check-features` linker args because otherwise one of the modules fails to link
rustflags = '-Ctarget-feature=+atomics,+bulk-memory -Clink-args=--no-check-features --cfg=web_sys_unstable_apis'

[unstable]
# We want to make sure std gets built with atomics, too
build-std = ['std', 'panic_abort']
86 changes: 75 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
check:
name: Compile and Test
Expand All @@ -16,22 +20,82 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: "1.64.0" # Required for [workspace.package]
override: true
target: wasm32-unknown-unknown
- name: Setup Rust
uses: dsherret/rust-toolchain-file@v1
- name: Install Nextest
uses: taiki-e/install-action@nextest
- name: Install wasm-pack
uses: taiki-e/install-action@wasm-pack
- name: Install wasm-strip and wasm-opt
run: sudo apt-get update && sudo apt-get install -y wabt binaryen
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Type Checking
run: cargo check --workspace --verbose --locked
- name: Install JS Dependencies
run: npm install
- name: Build
run: npm run build:dev
- name: Test
run: npm run test

api-docs:
name: API Docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Setup Rust
uses: dsherret/rust-toolchain-file@v1
- name: Install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
uses: taiki-e/install-action@wasm-pack
- name: Install wasm-strip and wasm-opt
run: sudo apt-get update && sudo apt-get install -y wabt binaryen
- name: Install Dependencies
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Install JS Dependencies
run: npm install
- name: Build
run: npm run build
- name: Test
run: npm run test
- name: Generate Docs
run: npx typedoc --out docs lib.ts
- name: Upload API Docs
uses: JamesIves/[email protected]
# FIXME: Re-enable this before merging
# if: github.ref == 'refs/heads/main'
with:
branch: gh-pages
folder: docs
single-commit: true

lints:
name: Linting and Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Setup Rust
uses: dsherret/rust-toolchain-file@v1
- name: Check Formatting
run: cargo fmt --all --verbose --check
- name: Clippy
run: cargo clippy --workspace --verbose

workflow-times:
name: Workflow Timings
runs-on: ubuntu-latest
needs: check
steps:
- name: Time Reporter
uses: Michael-F-Bryan/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
jobs: Compile and Test
message: |
Make sure you keep an eye on build times!
The goal is to keep CI times under 10 minutes so developers can maintain a fast edit-compile-test cycle.
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/bin
/target
target/
**/*.rs.bk
node_modules/
dist/
package-lock.json
*.log
pkg/
docs/
Loading

0 comments on commit 30f7a45

Please sign in to comment.