From e36e2bd340bcaf9707300698aec30256a4b4f0c9 Mon Sep 17 00:00:00 2001 From: Quentin Bourgerie Date: Wed, 15 Mar 2023 18:43:43 +0100 Subject: [PATCH] chore(ci): concurrency groups are broken with slab --- .github/workflows/compiler_benchmark.yml | 6 +++--- .github/workflows/compiler_build_and_test_cpu.yml | 6 +++--- .github/workflows/compiler_build_and_test_gpu.yml | 6 +++--- .github/workflows/compiler_publish_docker_images.yml | 6 +++--- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/compiler_benchmark.yml b/.github/workflows/compiler_benchmark.yml index a5e59e476..662a8e5f2 100644 --- a/.github/workflows/compiler_benchmark.yml +++ b/.github/workflows/compiler_benchmark.yml @@ -20,9 +20,9 @@ on: description: 'Slab request ID' type: string -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} +# concurrency: +# group: ${{ github.workflow }}-${{ github.ref }} +# cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} env: CARGO_TERM_COLOR: always diff --git a/.github/workflows/compiler_build_and_test_cpu.yml b/.github/workflows/compiler_build_and_test_cpu.yml index 89b78e28b..f3bf482db 100644 --- a/.github/workflows/compiler_build_and_test_cpu.yml +++ b/.github/workflows/compiler_build_and_test_cpu.yml @@ -22,9 +22,9 @@ on: description: 'Build matrix item' type: string -concurrency: - group: compiler_build_and_test_cpu-${{ github.ref }} - cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} +# concurrency: +# group: compiler_build_and_test_cpu-${{ github.ref }} +# cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} env: DOCKER_IMAGE_TEST: ghcr.io/zama-ai/concrete-compiler diff --git a/.github/workflows/compiler_build_and_test_gpu.yml b/.github/workflows/compiler_build_and_test_gpu.yml index 9dfe2f5b7..88f1d1d7d 100644 --- a/.github/workflows/compiler_build_and_test_gpu.yml +++ b/.github/workflows/compiler_build_and_test_gpu.yml @@ -22,9 +22,9 @@ on: description: 'Build matrix item' type: string -concurrency: - group: compiler_build_and_test_gpu-${{ github.ref }} - cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} +# concurrency: +# group: compiler_build_and_test_gpu-${{ github.ref }} +# cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} env: DOCKER_IMAGE_TEST: ghcr.io/zama-ai/concrete-compiler diff --git a/.github/workflows/compiler_publish_docker_images.yml b/.github/workflows/compiler_publish_docker_images.yml index 2ff195e49..24f88313a 100644 --- a/.github/workflows/compiler_publish_docker_images.yml +++ b/.github/workflows/compiler_publish_docker_images.yml @@ -23,9 +23,9 @@ on: description: 'Build matrix item' type: string -concurrency: - group: compiler_publish_docker_images-${{ github.ref }} - cancel-in-progress: true +# concurrency: +# group: compiler_publish_docker_images-${{ github.ref }} +# cancel-in-progress: true env: THIS_FILE: .github/workflows/compiler_publish_docker_images.yml