From 8caee759e2da883c2cc3faa45e75e726380a1fbe Mon Sep 17 00:00:00 2001 From: Vladislav Volosnikov Date: Tue, 20 Aug 2024 13:51:02 +0200 Subject: [PATCH] Fix workflow --- .github/workflows/ci.yml | 2 +- bin/ci_run | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1d4c42889625..b33dc05615f3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 }} diff --git a/bin/ci_run b/bin/ci_run index 8a3bc3eaf6f6..709e057bafaf 100755 --- a/bin/ci_run +++ b/bin/ci_run @@ -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