diff options
| author | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2023-02-19 18:03:09 +0000 |
|---|---|---|
| committer | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2023-02-19 18:08:54 +0000 |
| commit | 90298f1301fe9ed8460876581ef11d4410c7c2fa (patch) | |
| tree | dfd9472e3d4c6b1558d7e47644e73c04c9012610 | |
| parent | f935dc82bca7fc6804a35770fe2b9efc5cdc132e (diff) | |
| download | rust-90298f1301fe9ed8460876581ef11d4410c7c2fa.tar.gz rust-90298f1301fe9ed8460876581ef11d4410c7c2fa.zip | |
Only allow a single abi-cafe run at a time per branch
| -rw-r--r-- | .github/workflows/abi-cafe.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/abi-cafe.yml b/.github/workflows/abi-cafe.yml index 1d5bc621de0..5f5510a5796 100644 --- a/.github/workflows/abi-cafe.yml +++ b/.github/workflows/abi-cafe.yml @@ -1,4 +1,4 @@ -name: CI +name: Abi-cafe on: - push @@ -7,6 +7,9 @@ jobs: abi_cafe: runs-on: ${{ matrix.os }} timeout-minutes: 60 + concurrency: + group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.os }}-${{ matrix.env.TARGET_TRIPLE }} + cancel-in-progress: true defaults: run: |
