Skip to content

Commit

Permalink
toolchain: use new image
Browse files Browse the repository at this point in the history
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
  • Loading branch information
NickVolynkin committed Nov 10, 2023
1 parent 608308b commit 44d24e5
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 23 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
39 changes: 18 additions & 21 deletions scripts/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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() {
Expand All @@ -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"
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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"
Expand All @@ -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
Expand All @@ -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 \
Expand All @@ -210,16 +208,16 @@ prove() {
--volume $(pwd):/opt/zkllvm-template \
--volume $(pwd)/.config:/.config/ \
--volume $(pwd)/.config:/root/.config/ \
--volume $(pwd)/.config:/proof-market-toolchain/.config/ \
ghcr.io/nilfoundation/proof-market-toolchain:${TOOLCHAIN_VERSION} \
--volume $(pwd)/.config:/opt/nil-toolchain/.config/ \
ghcr.io/nilfoundation/toolchain:${TOOLCHAIN_VERSION} \
sh -c "bash /opt/zkllvm-template/scripts/run.sh prove"
cd -
else
cd "$REPO_ROOT"
proof-generator \
--circuit_input="$REPO_ROOT/build/template.json" \
--public_input="$REPO_ROOT/src/main-input.json" \
--proof_out="$REPO_ROOT/build/template/proof.bin"
--circuit="$REPO_ROOT/build/template.crct" \
--assignment-table="$REPO_ROOT/build/template.tbl" \
--proof="$REPO_ROOT/build/template/proof.bin"
check_file_exists "$REPO_ROOT/build/template/proof.bin"
fi
}
Expand All @@ -243,9 +241,8 @@ verify() {

run_all() {
compile
build_statement
prove
build_constraint
prove
build_circuit_params
verify
}
Expand Down

0 comments on commit 44d24e5

Please sign in to comment.