diff --git a/.github/workflows/alioss-integration.yml b/.github/workflows/alioss-integration.yml index da8e619f..1731df12 100644 --- a/.github/workflows/alioss-integration.yml +++ b/.github/workflows/alioss-integration.yml @@ -9,8 +9,8 @@ on: - main concurrency: - group: alioss-integration - cancel-in-progress: false + group: alioss-integration-${{ github.event.pull_request.head.ref || github.ref }} + cancel-in-progress: true jobs: gate: @@ -27,6 +27,10 @@ jobs: name: Alioss General Integration Tests runs-on: ubuntu-latest needs: [gate] + concurrency: + group: alioss-integration + cancel-in-progress: false + queue: max if: always() && (needs.gate.result == 'success' || needs.gate.result == 'skipped') steps: - name: Checkout code diff --git a/.github/workflows/azurebs-integration.yml b/.github/workflows/azurebs-integration.yml index 9aa3a31a..6b5570fd 100644 --- a/.github/workflows/azurebs-integration.yml +++ b/.github/workflows/azurebs-integration.yml @@ -9,8 +9,8 @@ on: - main concurrency: - group: azurebs-integration - cancel-in-progress: false + group: azurebs-integration-${{ github.event.pull_request.head.ref || github.ref }} + cancel-in-progress: true jobs: gate: @@ -27,6 +27,10 @@ jobs: name: AzureCloud Environment Integration Tests runs-on: ubuntu-latest needs: [gate] + concurrency: + group: azurebs-integration + cancel-in-progress: false + queue: max if: always() && (needs.gate.result == 'success' || needs.gate.result == 'skipped') steps: - name: Checkout code diff --git a/.github/workflows/dav-integration.yml b/.github/workflows/dav-integration.yml index 50ed31c6..b29675df 100644 --- a/.github/workflows/dav-integration.yml +++ b/.github/workflows/dav-integration.yml @@ -9,8 +9,8 @@ on: - main concurrency: - group: dav-integration - cancel-in-progress: false + group: dav-integration-${{ github.event.pull_request.head.ref || github.ref }} + cancel-in-progress: true jobs: gate: @@ -27,6 +27,10 @@ jobs: name: DAV Integration Tests runs-on: ubuntu-latest needs: [gate] + concurrency: + group: dav-integration + cancel-in-progress: false + queue: max if: always() && (needs.gate.result == 'success' || needs.gate.result == 'skipped') steps: - name: Checkout code diff --git a/.github/workflows/gcs-integration.yml b/.github/workflows/gcs-integration.yml index f942aad0..3bd4cd3e 100644 --- a/.github/workflows/gcs-integration.yml +++ b/.github/workflows/gcs-integration.yml @@ -9,8 +9,8 @@ on: - "main" concurrency: - group: gcs-integration - cancel-in-progress: false + group: gcs-integration-${{ github.event.pull_request.head.ref || github.ref }} + cancel-in-progress: true jobs: gate: @@ -27,6 +27,10 @@ jobs: name: GCS Integation Fast Tests runs-on: ubuntu-latest needs: [gate] + concurrency: + group: gcs-integration + cancel-in-progress: false + queue: max if: always() && (needs.gate.result == 'success' || needs.gate.result == 'skipped') steps: - name: Checkout code @@ -62,6 +66,10 @@ jobs: name: GCS Integation All Tests runs-on: ubuntu-latest needs: [gate] + concurrency: + group: gcs-integration + cancel-in-progress: false + queue: max if: always() && (needs.gate.result == 'success' || needs.gate.result == 'skipped') steps: - name: Checkout code diff --git a/.github/workflows/s3-integration.yml b/.github/workflows/s3-integration.yml index 5be01325..01ac6f0f 100644 --- a/.github/workflows/s3-integration.yml +++ b/.github/workflows/s3-integration.yml @@ -9,8 +9,8 @@ on: - main concurrency: - group: s3-integration - cancel-in-progress: false + group: s3-integration-${{ github.event.pull_request.head.ref || github.ref }} + cancel-in-progress: true jobs: gate: @@ -27,6 +27,10 @@ jobs: name: AWS S3 US Integration runs-on: ubuntu-latest needs: [gate] + concurrency: + group: s3-integration-us + cancel-in-progress: false + queue: max if: always() && (needs.gate.result == 'success' || needs.gate.result == 'skipped') env: REGION_NAME: us-east-1 @@ -95,6 +99,10 @@ jobs: name: AWS S3 ${{ matrix.name }} Integration runs-on: ubuntu-latest needs: [gate] + concurrency: + group: s3-integration-regional + cancel-in-progress: false + queue: max if: always() && (needs.gate.result == 'success' || needs.gate.result == 'skipped') strategy: fail-fast: false @@ -160,6 +168,10 @@ jobs: name: S3 Compatible Integration runs-on: ubuntu-latest needs: [gate] + concurrency: + group: s3-integration-compat + cancel-in-progress: false + queue: max if: always() && (needs.gate.result == 'success' || needs.gate.result == 'skipped') steps: - name: Checkout code