From 63839b943e5a171c3e3586c108fbdb1825086247 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikkel=20H=C3=B8jlund=20Larsen?= Date: Tue, 22 Aug 2023 11:37:21 +0200 Subject: [PATCH] Update .github/workflows/linux_cmake.yml to be concurrent --- .github/workflows/linux_cmake.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/linux_cmake.yml b/.github/workflows/linux_cmake.yml index 7f9588e..3c09f3a 100644 --- a/.github/workflows/linux_cmake.yml +++ b/.github/workflows/linux_cmake.yml @@ -18,13 +18,21 @@ jobs: with: extra_resolve_options: $EXTRA_RESOLVE_OPTIONS + # Cancel previous in-progress when pushing: https://stackoverflow.com/a/72408109 concurrency: + group: ${{ github.workflow }}-${{ github.ref || github.run_id }} + cancel-in-progress: true + +# Cancel previous in-progress when pushing: https://stackoverflow.com/a/72408109 concurrency: group: ${{ github.workflow }}-${{ github.ref || github.run_id }} cancel-in-progress: true + + # Cancel previous in-progress when pushing: https://stackoverflow.com/a/72408109 concurrency: group: ${{ github.workflow }}-${{ github.ref || github.run_id }} cancel-in-progress: true +