From ed21bfd84d48fd7067f0de4791a3926a5364f556 Mon Sep 17 00:00:00 2001 From: Vladislav Volosnikov Date: Tue, 20 Aug 2024 12:49:39 +0200 Subject: [PATCH] Change ci_run --- .github/workflows/build-prover-template.yml | 2 +- bin/ci_run | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-prover-template.yml b/.github/workflows/build-prover-template.yml index ad0dfb651f5b..0905ffd515a3 100644 --- a/.github/workflows/build-prover-template.yml +++ b/.github/workflows/build-prover-template.yml @@ -159,7 +159,7 @@ jobs: - name: setup-rust-flags-env if: matrix.component == 'witness-generator' run: | - echo RUST_FLAGS="'${{ env.WITNESS_GENERATOR_RUST_FLAGS }}'" >> $GITHUB_ENV + echo RUST_FLAGS="${{ env.WITNESS_GENERATOR_RUST_FLAGS }}" >> $GITHUB_ENV - name: update-images env: diff --git a/bin/ci_run b/bin/ci_run index 709e057bafaf..8a3bc3eaf6f6 100755 --- a/bin/ci_run +++ b/bin/ci_run @@ -10,7 +10,8 @@ if [ ! -z "$PASSED_ENV_VARS" ]; then IFS=',' read -ra ADDR <<<"$PASSED_ENV_VARS" for var in "${ADDR[@]}"; do value=$(eval echo \$$var) - env_vars_option="${env_vars_option} -e ${var}=${value}" + param='"'"${var}=${value}"'"' + env_vars_option="${env_vars_option} -e ${param}" done docker-compose -f $compose_file exec -T $env_vars_option zk "$@" else