forked from wasmerio/wasmer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request wasmerio#328 from wasmerio/wasix
Implement WASIX
- Loading branch information
Showing
50 changed files
with
7,177 additions
and
3,167 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,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'] |
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 |
---|---|---|
|
@@ -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 | ||
|
@@ -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. |
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 |
---|---|---|
@@ -1,7 +1,8 @@ | ||
/bin | ||
/target | ||
target/ | ||
**/*.rs.bk | ||
node_modules/ | ||
dist/ | ||
package-lock.json | ||
*.log | ||
pkg/ | ||
docs/ |
Oops, something went wrong.