Browse Source

Cancel previous builds when PR is updated

pull/5479/head^2
Anders Jenbo 3 years ago
parent
commit
367223bb22
  1. 4
      .github/workflows/Android.yml
  2. 4
      .github/workflows/Linux_x86.yml
  3. 4
      .github/workflows/Linux_x86_64_SDL1.yml
  4. 5
      .github/workflows/Linux_x86_64_test.yml
  5. 4
      .github/workflows/MacOSX.yml
  6. 4
      .github/workflows/PS4.yml
  7. 4
      .github/workflows/Windows_MSVC_x64.yml
  8. 4
      .github/workflows/Windows_MinGW_x64.yml
  9. 4
      .github/workflows/Windows_MinGW_x86.yml
  10. 4
      .github/workflows/clang-format-check.yml
  11. 4
      .github/workflows/iOS.yml
  12. 4
      .github/workflows/miyoo_mini_release.yml
  13. 4
      .github/workflows/opendingux_release.yml
  14. 4
      .github/workflows/retrofw_release.yml
  15. 4
      .github/workflows/src_dist_release.yml
  16. 4
      .github/workflows/translations.yml
  17. 4
      .github/workflows/xbox_nxdk.yml
  18. 4
      .github/workflows/xbox_one.yml

4
.github/workflows/Android.yml

@ -7,6 +7,10 @@ on:
pull_request:
types: [ opened, synchronize ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest

4
.github/workflows/Linux_x86.yml

@ -7,6 +7,10 @@ on:
pull_request:
types: [ opened, synchronize ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-18.04

4
.github/workflows/Linux_x86_64_SDL1.yml

@ -7,6 +7,10 @@ on:
pull_request:
types: [ opened, synchronize ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-20.04

5
.github/workflows/Linux_x86_64_test.yml

@ -6,9 +6,12 @@ on:
- master
pull_request:
types: [ opened, synchronize ]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest

4
.github/workflows/MacOSX.yml

@ -7,6 +7,10 @@ on:
pull_request:
types: [ opened, synchronize ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release

4
.github/workflows/PS4.yml

@ -9,6 +9,10 @@ on:
release:
types: [published]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ps4:
runs-on: ubuntu-latest

4
.github/workflows/Windows_MSVC_x64.yml

@ -7,6 +7,10 @@ on:
pull_request:
types: [ opened, synchronize ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: windows-latest

4
.github/workflows/Windows_MinGW_x64.yml

@ -7,6 +7,10 @@ on:
pull_request:
types: [ opened, synchronize ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-22.04

4
.github/workflows/Windows_MinGW_x86.yml

@ -7,6 +7,10 @@ on:
pull_request:
types: [ opened, synchronize ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-22.04

4
.github/workflows/clang-format-check.yml

@ -7,6 +7,10 @@ on:
pull_request:
types: [ opened, synchronize ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
formatting-check:
runs-on: ubuntu-latest

4
.github/workflows/iOS.yml

@ -9,6 +9,10 @@ on:
release:
types: [published]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
# The CMake configure and build commands are platform agnostic and should work equally

4
.github/workflows/miyoo_mini_release.yml

@ -5,6 +5,10 @@ on:
types: [published]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
miyoo-mini:
runs-on: ubuntu-22.04

4
.github/workflows/opendingux_release.yml

@ -5,6 +5,10 @@ on:
types: [published]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
gcw0:
runs-on: ubuntu-22.04

4
.github/workflows/retrofw_release.yml

@ -5,6 +5,10 @@ on:
types: [published]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
retrofw:
runs-on: ubuntu-latest

4
.github/workflows/src_dist_release.yml

@ -5,6 +5,10 @@ on:
types: [published]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
make_src_dist:
runs-on: ubuntu-latest

4
.github/workflows/translations.yml

@ -7,6 +7,10 @@ on:
pull_request:
types: [ opened, synchronize ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
fmt-check:
runs-on: ubuntu-latest

4
.github/workflows/xbox_nxdk.yml

@ -9,6 +9,10 @@ on:
release:
types: [published]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
xbox:
# `ubuntu-latest` is currently 20.04 but we require a newer clang.

4
.github/workflows/xbox_one.yml

@ -9,6 +9,10 @@ on:
release:
types: [published]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: windows-latest

Loading…
Cancel
Save