From 9787df2df12e75c4684de6e2766f6c64a6132e4d Mon Sep 17 00:00:00 2001 From: Nick Volynkin Date: Wed, 8 Nov 2023 21:27:59 +0200 Subject: [PATCH] ci: update zkllvm to 0.1.1 --- .github/workflows/main.yml | 2 +- Dockerfile | 2 +- README.md | 2 +- scripts/run.sh | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8706b5f..db1543a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,7 +14,7 @@ concurrency: cancel-in-progress: true env: - ZKLLVM_VERSION: 0.1.0 + ZKLLVM_VERSION: 0.1.1 TOOLCHAIN_VERSION: 0.0.39 jobs: diff --git a/Dockerfile b/Dockerfile index 191d6b3..2f86a8d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # build to ghcr.io/nilfoundation/zkllvm-template:latest FROM ghcr.io/nilfoundation/build-base:1.76.0 -ARG ZKLLVM_VERSION=0.1.0 +ARG ZKLLVM_VERSION=0.1.1 RUN DEBIAN_FRONTEND=noninteractive \ echo 'deb [trusted=yes] http://deb.nil.foundation/ubuntu/ all main' >> /etc/apt/sources.list \ diff --git a/README.md b/README.md index 66749a2..67e58c6 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ Both images are versioned according to the products they contain. In the tutorial, we'll use the latest compatible versions of both images: ```bash -ZKLLVM_VERSION=0.1.0 +ZKLLVM_VERSION=0.1.1 docker pull ghcr.io/nilfoundation/zkllvm-template:${ZKLLVM_VERSION} TOOLCHAIN_VERSION=0.0.39 diff --git a/scripts/run.sh b/scripts/run.sh index d66939e..08c7312 100755 --- a/scripts/run.sh +++ b/scripts/run.sh @@ -14,11 +14,11 @@ SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) REPO_ROOT="$SCRIPT_DIR/.." # Set image versions in the environment before running this script: -# export ZKLLVM_VERSION=0.0.58 +# export ZKLLVM_VERSION=0.1.1. # export TOOLCHAIN_VERSION=0.0.39 # If unset, default values will be used: -echo "using nilfoundation/zkllvm-template:${ZKLLVM_VERSION:=0.1.0}" +echo "using nilfoundation/zkllvm-template:${ZKLLVM_VERSION:=0.1.1}" echo "using nilfoundation/proof-market-toolchain:${TOOLCHAIN_VERSION:=0.0.39}" # podman is a safer option for using on CI machines