From 6d89a3af84e985afef04d714d158a90186beac72 Mon Sep 17 00:00:00 2001 From: Nick Volynkin Date: Fri, 10 Nov 2023 18:17:48 +0200 Subject: [PATCH] toolchain: use new image Use the single image with everything on-board: ghcr.io/nilfoundation/toolchain Tags match the zkLLLVM versions, see them on https://github.com/NilFoundation/zkLLVM/releases --- .github/workflows/main.yml | 12 ++++++++++-- scripts/run.sh | 31 ++++++++++++++----------------- 2 files changed, 24 insertions(+), 19 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1f0efdb..4aa5091 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,8 +14,7 @@ concurrency: cancel-in-progress: true env: - ZKLLVM_VERSION: 0.1.5 - TOOLCHAIN_VERSION: 0.0.39 + TOOLCHAIN_VERSION: 0.1.5 jobs: test-zkllvm-workflow: @@ -29,5 +28,14 @@ jobs: - name: Compile a circuit run: scripts/run.sh --verbose --docker compile + - name: Make constraint and assignment table for EVM verifier endpoint + run: scripts/run.sh --verbose --docker build_constraint + - name: Build a statement for the Proof Market run: scripts/run.sh --verbose --docker build_statement + + - name: Calculate a proof + run: scripts/run.sh --verbose --docker prove + + - name: Build circuit parameters for EVM verifier endpoint + run: scripts/run.sh --verbose --docker build_circuit_params diff --git a/scripts/run.sh b/scripts/run.sh index 3972168..3b766aa 100755 --- a/scripts/run.sh +++ b/scripts/run.sh @@ -14,12 +14,10 @@ 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.1.5 -# export TOOLCHAIN_VERSION=0.0.39 +# export TOOLCHAIN_VERSION=0.1.5 # If unset, default values will be used: -echo "using nilfoundation/zkllvm-template:${ZKLLVM_VERSION:=0.1.5}" -echo "using nilfoundation/proof-market-toolchain:${TOOLCHAIN_VERSION:=0.0.39}" +echo "using nilfoundation/toolchain:${TOOLCHAIN_VERSION:=0.1.5}" # podman is a safer option for using on CI machines if ! command -v podman; then @@ -52,7 +50,7 @@ run_zkllvm() { --name zkllvm \ --volume $(pwd):/opt/zkllvm-template \ --user $(id -u ${USER}):$(id -g ${USER}) \ - ghcr.io/nilfoundation/zkllvm-template:${ZKLLVM_VERSION} + ghcr.io/nilfoundation/toolchain:${TOOLCHAIN_VERSION} } run_proof_market_toolchain() { @@ -70,11 +68,11 @@ run_proof_market_toolchain() { --volume $(pwd)/.config/.user:/proof-market-toolchain/scripts/.user \ --volume $(pwd)/.config/.secret:/proof-market-toolchain/scripts/.secret \ --user $(id -u ${USER}):$(id -g ${USER}) \ - ghcr.io/nilfoundation/proof-market-toolchain:${TOOLCHAIN_VERSION} + ghcr.io/nilfoundation/toolchain:${TOOLCHAIN_VERSION} } # Compile source code into a circuit -# https://github.com/NilFoundation/zkllvm-template/#step-1-compile-a-circuit +# https://github.com/nilfoundation/toolchain/#step-1-compile-a-circuit compile() { if [ "$USE_DOCKER" = true ] ; then cd "$REPO_ROOT" @@ -83,7 +81,7 @@ compile() { --platform=linux/amd64 \ --user $(id -u ${USER}):$(id -g ${USER}) \ --volume $(pwd):/opt/zkllvm-template \ - ghcr.io/nilfoundation/zkllvm-template:${ZKLLVM_VERSION} \ + ghcr.io/nilfoundation/toolchain:${TOOLCHAIN_VERSION} \ sh -c "bash ./scripts/run.sh compile" cd - else @@ -108,7 +106,7 @@ build_constraint() { --platform=linux/amd64 \ --user $(id -u ${USER}):$(id -g ${USER}) \ --volume $(pwd):/opt/zkllvm-template \ - ghcr.io/nilfoundation/zkllvm-template:${ZKLLVM_VERSION} \ + ghcr.io/nilfoundation/toolchain:${TOOLCHAIN_VERSION} \ sh -c "bash ./scripts/run.sh build_constraint" cd - else @@ -133,7 +131,7 @@ build_circuit_params() { --platform=linux/amd64 \ --user $(id -u ${USER}):$(id -g ${USER}) \ --volume $(pwd):/opt/zkllvm-template \ - ghcr.io/nilfoundation/zkllvm-template:${ZKLLVM_VERSION} \ + ghcr.io/nilfoundation/toolchain:${TOOLCHAIN_VERSION} \ sh -c "bash ./scripts/run.sh build_circuit_params" cd - else @@ -163,7 +161,7 @@ build_circuit_params() { # Use the Proof Market toolchain to pack circuit into a statement # that can later be used to produce a proof locally or sent to the # Proof Market. -# https://github.com/NilFoundation/zkllvm-template/#step-2-build-a-circuit-statement +# https://github.com/nilfoundation/toolchain/#step-2-build-a-circuit-statement build_statement() { if [ "$USE_DOCKER" = true ] ; then cd "$REPO_ROOT" @@ -175,7 +173,7 @@ build_statement() { --volume $(pwd)/.config:/.config/ \ --volume $(pwd)/.config:/root/.config/ \ --volume $(pwd)/.config:/proof-market-toolchain/.config/ \ - ghcr.io/nilfoundation/proof-market-toolchain:${TOOLCHAIN_VERSION} \ + ghcr.io/nilfoundation/toolchain:${TOOLCHAIN_VERSION} \ sh -c "bash /opt/zkllvm-template/scripts/run.sh build_statement" cd - else @@ -194,13 +192,13 @@ build_statement() { # Prove the circuit with particular input. # See the input files at: # ./src/main-input.json -# https://github.com/NilFoundation/zkllvm-template/#step-3-produce-and-verify-a-proof-locally +# https://github.com/nilfoundation/toolchain/#step-3-produce-and-verify-a-proof-locally prove() { if [ "$USE_DOCKER" = true ] ; then cd "$REPO_ROOT" mkdir -p $REPO_ROOT/build/template - # workaround for https://github.com/NilFoundation/proof-market-toolchain/issues/61 + # workaround for https://github.com/nilfoundation/toolchain/issues/61 mkdir -p .config touch .config/config.ini $DOCKER run $DOCKER_OPTS \ @@ -211,7 +209,7 @@ prove() { --volume $(pwd)/.config:/.config/ \ --volume $(pwd)/.config:/root/.config/ \ --volume $(pwd)/.config:/proof-market-toolchain/.config/ \ - ghcr.io/nilfoundation/proof-market-toolchain:${TOOLCHAIN_VERSION} \ + ghcr.io/nilfoundation/toolchain:${TOOLCHAIN_VERSION} \ sh -c "bash /opt/zkllvm-template/scripts/run.sh prove" cd - else @@ -243,9 +241,8 @@ verify() { run_all() { compile - build_statement - prove build_constraint + prove build_circuit_params verify }