From 855b341ed131dad771ce5b2436a7df4d1e274fbe Mon Sep 17 00:00:00 2001 From: teor Date: Tue, 16 May 2023 09:04:33 +1000 Subject: [PATCH] Fix CI concurrency names (#6686) --- .github/workflows/continous-integration-docker.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/continous-integration-docker.yml b/.github/workflows/continous-integration-docker.yml index 2ab32e23b..49d50a4a0 100644 --- a/.github/workflows/continous-integration-docker.yml +++ b/.github/workflows/continous-integration-docker.yml @@ -314,7 +314,7 @@ jobs: # # See the concurrency comment on the zebrad test-full-sync job for details. concurrency: - group: ${{ github.workflow }}−manual-${{ fromJSON(github.event.inputs.regenerate-disks) }}-regenerate-stateful-disks + group: ${{ github.workflow }}−manual-${{ format('{0}', github.event.inputs.regenerate-disks == 'true') }}-regenerate-stateful-disks cancel-in-progress: false # Test that Zebra syncs and fully validates a few thousand blocks from a cached mandatory checkpoint disk @@ -383,7 +383,7 @@ jobs: # TODO: # - allow multiple manual syncs on a branch by adding '-${{ github.run_id }}' when github.event.inputs.run-full-sync is true concurrency: - group: ${{ github.workflow }}−manual-${{ fromJSON(github.event.inputs.run-full-sync) }}-test-full-sync + group: ${{ github.workflow }}−manual-${{ format('{0}', github.event.inputs.run-full-sync == 'true') }}-test-full-sync cancel-in-progress: false # Test that Zebra can sync to the chain tip, using a cached Zebra tip state, @@ -497,7 +497,7 @@ jobs: # TODO: # - allow multiple manual syncs on a branch by adding '-${{ github.run_id }}' when github.event.inputs.run-full-sync is true concurrency: - group: ${{ github.workflow }}−manual-${{ fromJSON(github.event.inputs.run-full-sync) }}-test-full-sync-testnet + group: ${{ github.workflow }}−manual-${{ format('{0}', github.event.inputs.run-full-sync == 'true') }}-test-full-sync-testnet cancel-in-progress: false # Test that Zebra can generate testnet checkpoints after syncing to the chain tip, @@ -572,7 +572,7 @@ jobs: # # See the concurrency comment on the zebrad test-full-sync job for details. concurrency: - group: ${{ github.workflow }}−manual-${{ fromJSON(github.event.inputs.run-lwd-sync) }}-lightwalletd-full-sync + group: ${{ github.workflow }}−manual-${{ format('{0}', github.event.inputs.run-lwd-sync == 'true') }}-lightwalletd-full-sync cancel-in-progress: false # Test update sync of lightwalletd with a lightwalletd and Zebra tip state