Update sp1 to v5.2.2 (#188)

This commit is contained in:
Han
2025-11-01 09:05:27 +08:00
committed by GitHub
parent 7ffdc632d4
commit f4b99ab7fd
11 changed files with 48 additions and 49 deletions

View File

@@ -35,8 +35,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
# Install rustup.
# RUST_VERSION can be 1.86, stable, nightly, etc
ARG RUST_VERSION=1.86.0
# RUST_VERSION can be 1.88.0, stable, nightly, etc
ARG RUST_VERSION=1.88.0
ENV RUSTUP_HOME=/usr/local/rustup \
CARGO_HOME=/usr/local/cargo \

View File

@@ -10,7 +10,7 @@ COPY --chmod=755 scripts/sdk_installers/install_sp1_sdk.sh /tmp/install_sp1_sdk.
# Define where SP1 SDK will be installed within the image.
# The install_sp1_sdk.sh script will respect these ENV variables.
ENV SP1_DIR="/root/.sp1" \
SP1_VERSION="v5.2.1"
SP1_VERSION="v5.2.2"
# Run the SP1 SDK installation script
# It will use the SP1_DIR and SP1_VERSION defined above.