Skip to content

Commit

Permalink
Change ci_run
Browse files Browse the repository at this point in the history
  • Loading branch information
0xVolosnikov committed Aug 20, 2024
1 parent 620b52b commit ed21bfd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-prover-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
3 changes: 2 additions & 1 deletion bin/ci_run
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ed21bfd

Please sign in to comment.