diff options
author | Max Hilbrunner <m.hilbrunner@gmail.com> | 2021-08-24 20:49:06 +0200 |
---|---|---|
committer | Max Hilbrunner <m.hilbrunner@gmail.com> | 2021-08-25 14:54:48 +0200 |
commit | 40bb1ded7e23855cc3ed9075a286c886a5f843d5 (patch) | |
tree | 3c0ddadaf555767d87655249e242f70e9d4e887f /.github/workflows/ios_builds.yml | |
parent | ca7f53dd25cd7ee52004a09d4b7ababb9fa0bca6 (diff) | |
download | redot-engine-40bb1ded7e23855cc3ed9075a286c886a5f843d5.tar.gz |
CI: Cancel previous builds if new commit is pushed
Diffstat (limited to '.github/workflows/ios_builds.yml')
-rw-r--r-- | .github/workflows/ios_builds.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/ios_builds.yml b/.github/workflows/ios_builds.yml index 6f5ffcf42f..9adb6c91dd 100644 --- a/.github/workflows/ios_builds.yml +++ b/.github/workflows/ios_builds.yml @@ -7,6 +7,10 @@ env: SCONSFLAGS: platform=iphone verbose=yes warnings=extra werror=yes debug_symbols=no --jobs=2 module_text_server_fb_enabled=yes SCONS_CACHE_LIMIT: 4096 +concurrency: + group: ci-${{github.actor}}-${{github.head_ref || concat(github.ref, github.run_number)}}-${{github.ref}}-ios + cancel-in-progress: true + jobs: ios-template: runs-on: "macos-latest" |