forked from organicmaps/organicmaps
[github] Cancel previous actions if PR or branch was updated
It will help to avoid waiting for available free runners Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
parent
4ad4a1e164
commit
e960237b4f
4 changed files with 20 additions and 0 deletions
5
.github/workflows/android-check.yaml
vendored
5
.github/workflows/android-check.yaml
vendored
|
@ -25,6 +25,11 @@ on:
|
|||
- track_generator/**
|
||||
- xcode/**
|
||||
|
||||
# Cancels previous jobs if the same branch or PR was updated again.
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
name: Android Lint
|
||||
|
|
5
.github/workflows/ios-check.yaml
vendored
5
.github/workflows/ios-check.yaml
vendored
|
@ -24,6 +24,11 @@ on:
|
|||
- tools/**
|
||||
- track_generator/**
|
||||
|
||||
# Cancels previous jobs if the same branch or PR was updated again.
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
ios-check:
|
||||
name: Build iOS
|
||||
|
|
5
.github/workflows/linux-check.yaml
vendored
5
.github/workflows/linux-check.yaml
vendored
|
@ -22,6 +22,11 @@ on:
|
|||
- '!tools/python/SiblingKiller.py'
|
||||
- xcode/**
|
||||
|
||||
# Cancels previous jobs if the same branch or PR was updated again.
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
linux-no-unity:
|
||||
name: Linux no unity build
|
||||
|
|
5
.github/workflows/macos-check.yaml
vendored
5
.github/workflows/macos-check.yaml
vendored
|
@ -22,6 +22,11 @@ on:
|
|||
- '!tools/python/SiblingKiller.py'
|
||||
- xcode/**
|
||||
|
||||
# Cancels previous jobs if the same branch or PR was updated again.
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
macos-matrix:
|
||||
name: macOS builds and tests
|
||||
|
|
Loading…
Add table
Reference in a new issue