-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
66 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 |
---|---|---|
|
@@ -245,6 +245,34 @@ jobs: | |
report_paths: '**/target/report-*.xml' | ||
detailed_summary: true | ||
include_passed: true | ||
|
||
wasm-rpc-stub: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 1 | ||
submodules: recursive | ||
- name: Fetch tag | ||
run: git fetch origin --deepen=1 | ||
- name: Setup Rust | ||
run: rustup update stable --no-self-update && rustup default stable | ||
- name: Install cargo-component | ||
run: cargo binstall --no-confirm [email protected] | ||
- uses: Swatinem/rust-cache@v2 | ||
with: | ||
shared-key: debug | ||
cache-all-crates: true | ||
save-if: true | ||
- uses: davidB/rust-cargo-make@v1 | ||
- name: Install Protoc | ||
uses: arduino/setup-protoc@v3 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Build wasm-rpc in stub mode | ||
run: cargo component build -p golem-wasm-rpc --no-default-features --features stub | ||
|
||
worker-tests-group1: | ||
runs-on: ubuntu-latest-xlarge | ||
name: worker-tests-group1 | ||
|
@@ -453,6 +481,7 @@ jobs: | |
needs: | ||
[ | ||
build-and-test, | ||
wasm-rpc-stub, | ||
worker-tests, | ||
integration-tests, | ||
cli-tests, | ||
|
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