summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2024-02-06 17:31:57 -0800
committerGitHub <noreply@github.com>2024-02-06 17:31:57 -0800
commita95b7530b782745d2778f3ea94c4ba9907991f78 (patch)
tree87b59518b016e5dbc706e38cb5db137830a35daf /.github/workflows/ci.yml
parent3358b3dd4680cc3f86bbd22b84c242c7f0053775 (diff)
CI: cancel onging jobs on commit. (#3557)
* CI: cancel onging jobs on commit. * test change * Fix.
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 4c5a863a3..a60a047f1 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -1,11 +1,13 @@
-name: CI
+name: CI (CMake)
on:
push:
branches: [master]
pull_request:
branches: [master]
-
+concurrency:
+ group: ${{ github.workflow }}-${{ github.ref }}
+ cancel-in-progress: true
jobs:
build:
strategy: