Skip to content

Commit 22c7b16

Browse files
authored
Merge pull request #1328 from o1-labs/dw/use-previous-nightly-rust
CI: use a previous version of nightly
2 parents c3d95db + 15fd74c commit 22c7b16

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/actions/setup-wasm/action.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ inputs:
44
toolchain:
55
description: 'Rust toolchain version'
66
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'
89
wasm-bindgen-version:
910
description: 'wasm-bindgen-cli version'
1011
required: false
@@ -31,4 +32,4 @@ runs:
3132
- name: Setup Rust Cache
3233
uses: Swatinem/rust-cache@v2
3334
with:
34-
prefix-key: ${{ inputs.cache-prefix }}
35+
prefix-key: ${{ inputs.cache-prefix }}

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# OpenMina Makefile
22

33
# Rust
4-
NIGHTLY_RUST_VERSION = "nightly"
4+
NIGHTLY_RUST_VERSION = "nightly-2025-08-18"
55

66
# Docker
77
DOCKER_ORG ?= openmina
@@ -86,7 +86,7 @@ build-vrf: ## Build the VRF package
8686

8787
.PHONY: build-wasm
8888
build-wasm: ## Build WebAssembly node
89-
@cd node/web && cargo +nightly build \
89+
@cd node/web && cargo +${NIGHTLY_RUST_VERSION} build \
9090
--release --target wasm32-unknown-unknown
9191
# Update ./.gitignore accordingly if the out-dir is changed
9292
@wasm-bindgen --keep-debug --web \

0 commit comments

Comments
 (0)