Skip to content

Commit

Permalink
fix: downgrade rust to 1.81.0 in WASM builds (#1149)
Browse files Browse the repository at this point in the history
This is a temporary fix for WASM no longer building due to wasm2js breaking when using 1.82.0
  • Loading branch information
coroiu authored Oct 21, 2024
1 parent e2aa102 commit c5a7419
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-wasm-internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Install rust
uses: dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a # stable
with:
toolchain: stable
toolchain: 1.81.0
targets: wasm32-unknown-unknown

- name: Cache cargo registry
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Install rust
uses: dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a # stable
with:
toolchain: stable
toolchain: 1.81.0
targets: wasm32-unknown-unknown

- name: Cache cargo registry
Expand Down

0 comments on commit c5a7419

Please sign in to comment.