diff options
| author | Louis Dionne <ldionne.2@gmail.com> | 2025-09-11 15:55:54 -0400 |
|---|---|---|
| committer | Louis Dionne <ldionne.2@gmail.com> | 2025-09-11 15:56:23 -0400 |
| commit | bd6e217ac6a3f3d483d6acfdbb40d5c20a79c16b (patch) | |
| tree | 42f833e41601ada17862a76e2e1b7a694e9a2464 /.github/workflows/libcxx-build-and-test.yaml | |
| parent | 0e3c5566c0c62a56629a927d7de5e2594d2dbe7c (diff) | |
[libc++] Remove concurrency in the right libc++ job
Early-cancellation should have been removed from libcxx-run-benchmarks.yml
in the first place, not libcxx-build-and-test.yaml.
Diffstat (limited to '.github/workflows/libcxx-build-and-test.yaml')
| -rw-r--r-- | .github/workflows/libcxx-build-and-test.yaml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/libcxx-build-and-test.yaml b/.github/workflows/libcxx-build-and-test.yaml index c46a8c3c2b8d..2e6ff7f91b6f 100644 --- a/.github/workflows/libcxx-build-and-test.yaml +++ b/.github/workflows/libcxx-build-and-test.yaml @@ -29,6 +29,10 @@ on: permissions: contents: read # Default everything to read-only +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number }} + cancel-in-progress: true + jobs: stage1: if: github.repository_owner == 'llvm' |
