File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
.github/actions/setup-wasm Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 4
4
toolchain :
5
5
description : ' Rust toolchain version'
6
6
required : false
7
- default : ' nightly'
7
+ # FIXME: set to nightly when https://github.com/rust-lang/rust/issues/145652
8
+ default : ' nightly-2025-08-18'
8
9
wasm-bindgen-version :
9
10
description : ' wasm-bindgen-cli version'
10
11
required : false
31
32
- name : Setup Rust Cache
32
33
uses : Swatinem/rust-cache@v2
33
34
with :
34
- prefix-key : ${{ inputs.cache-prefix }}
35
+ prefix-key : ${{ inputs.cache-prefix }}
Original file line number Diff line number Diff line change 1
1
# OpenMina Makefile
2
2
3
3
# Rust
4
- NIGHTLY_RUST_VERSION = "nightly"
4
+ NIGHTLY_RUST_VERSION = "nightly-2025-08-18 "
5
5
6
6
# Docker
7
7
DOCKER_ORG ?= openmina
@@ -86,7 +86,7 @@ build-vrf: ## Build the VRF package
86
86
87
87
.PHONY : build-wasm
88
88
build-wasm : # # Build WebAssembly node
89
- @cd node/web && cargo +nightly build \
89
+ @cd node/web && cargo +${NIGHTLY_RUST_VERSION} build \
90
90
--release --target wasm32-unknown-unknown
91
91
# Update ./.gitignore accordingly if the out-dir is changed
92
92
@wasm-bindgen --keep-debug --web \
You can’t perform that action at this time.
0 commit comments