Skip to content

Commit

Permalink
Fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
0xVolosnikov committed Aug 20, 2024
1 parent ed21bfd commit 8caee75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ jobs:
action: "build"
ERA_BELLMAN_CUDA_RELEASE: ${{ vars.ERA_BELLMAN_CUDA_RELEASE }}
is_pr_from_fork: ${{ github.event.pull_request.head.repo.fork == true }}
WITNESS_GENERATOR_RUST_FLAGS: "-C target-cpu=invalid"
WITNESS_GENERATOR_RUST_FLAGS: "-Ctarget-cpu=invalid"
secrets:
DOCKERHUB_USER: ${{ secrets.DOCKERHUB_USER }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
Expand Down
3 changes: 1 addition & 2 deletions bin/ci_run
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ if [ ! -z "$PASSED_ENV_VARS" ]; then
IFS=',' read -ra ADDR <<<"$PASSED_ENV_VARS"
for var in "${ADDR[@]}"; do
value=$(eval echo \$$var)
param='"'"${var}=${value}"'"'
env_vars_option="${env_vars_option} -e ${param}"
env_vars_option="${env_vars_option} -e ${var}=${value}"
done
docker-compose -f $compose_file exec -T $env_vars_option zk "$@"
else
Expand Down

0 comments on commit 8caee75

Please sign in to comment.