Skip to content

Commit

Permalink
Clean up CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tommy-xr committed Jun 13, 2024
1 parent 611b666 commit d12b630
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build-native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ jobs:
with:
toolchain: stable

- name: Install wasm-pack
run: npm install -g wasm-pack

- name: Install Dependencies
if: matrix.os == 'ubuntu-latest'
run: |
Expand All @@ -53,6 +56,12 @@ jobs:
run: cargo build
working-directory: runtime/functor-runtime-desktop

# Building the web bundle is necessary for the CLI,
# since the cli includes the web bundle for dev server
- name: Build runtime wasm bundle
run: wasm-pack build --target web
working-directory: runtime/functor-runtime-web

- name: Build CLI
run: cargo build
working-directory: cli
Expand Down

0 comments on commit d12b630

Please sign in to comment.