Skip to content

Commit 4323dca

Browse files
authored
Merge pull request #117 from tnull/2023-08-cancel-in-progress
2 parents 9cef9d7 + 3e8a5f7 commit 4323dca

File tree

5 files changed

+20
-0
lines changed

5 files changed

+20
-0
lines changed

.github/workflows/build-xcframework-parallel-archives.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ on:
1313
branches:
1414
- "*"
1515

16+
concurrency:
17+
group: ${{ github.workflow }}-${{ github.ref }}
18+
cancel-in-progress: true
19+
1620
jobs:
1721
build-xcarchives:
1822
name: Build xcarchive for ${{ matrix.configuration['human_readable_platform'] }}

.github/workflows/build-xcframework-parallel-libldk.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ on:
1313
branches:
1414
- "*"
1515

16+
concurrency:
17+
group: ${{ github.workflow }}-${{ github.ref }}
18+
cancel-in-progress: true
19+
1620
jobs:
1721
build-libldks:
1822
name: Build & lipo libldk.a for ${{ matrix.configuration['human_readable_platform'] }}

.github/workflows/build-xcframework-sequential.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ on:
1313
branches:
1414
- "*"
1515

16+
concurrency:
17+
group: ${{ github.workflow }}-${{ github.ref }}
18+
cancel-in-progress: true
19+
1620
jobs:
1721
generate-sequential:
1822
name: Build libldks, build xcarchives, and combine into xcframework

.github/workflows/direct-bindings-app-tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ on:
1313
branches:
1414
- "*"
1515

16+
concurrency:
17+
group: ${{ github.workflow }}-${{ github.ref }}
18+
cancel-in-progress: true
19+
1620
jobs:
1721
build:
1822
name: Build (${{ matrix.configuration['scheme'] }} - ${{ matrix.configuration['platform'] }})

.github/workflows/swift.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ on:
66
- main
77
pull_request:
88

9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.ref }}
11+
cancel-in-progress: true
12+
913
jobs:
1014
check_bindings:
1115
name: Swift Package Manager Tests

0 commit comments

Comments
 (0)