Skip to content

Commit 6546438

Browse files
authored
Merge pull request #627 from fog/fix-concurrency
Add concurrency groups
2 parents e40eed7 + 547c0aa commit 6546438

9 files changed

+72
-0
lines changed

.github/workflows/integration-compute-core.yml

+9
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,14 @@ on:
2222
- 'lib/fog/google.rb'
2323
# Trigger workflow on version upgrade
2424
- 'lib/fog/google/version.rb'
25+
# Trigger when workflow itself is updated
26+
- '.github/workflows/integration-compute-core.yml'
27+
28+
# Setting hard concurrency limit for the project due to cleanup
29+
# TODO(fog-google#626): remove this once cleanup is fixed
30+
concurrency:
31+
group: ${{ github.workflow }}
32+
cancel-in-progress: false
2533

2634
jobs:
2735
test-compute:
@@ -30,6 +38,7 @@ jobs:
3038
matrix:
3139
ruby-version: [ '3.0', '3.1', '3.2' ]
3240
# Integration tests from the same task cannot run in parallel yet due to cleanup
41+
# TODO(fog-google#626): remove this once cleanup is fixed
3342
max-parallel: 1
3443

3544
steps:

.github/workflows/integration-compute-instance_groups.yml

+9
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,15 @@ on:
2222
- 'lib/fog/google.rb'
2323
# Trigger workflow on version upgrade
2424
- 'lib/fog/google/version.rb'
25+
# Trigger when workflow itself is updated
26+
- '.github/workflows/integration-compute-instance_groups.yml'
27+
28+
# Setting hard concurrency limit for the project due to cleanup
29+
# TODO(fog-google#626): remove this once cleanup is fixed
30+
concurrency:
31+
group: ${{ github.workflow }}
32+
cancel-in-progress: false
33+
2534

2635
jobs:
2736
test:

.github/workflows/integration-compute-loadbalancing.yml

+9
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,15 @@ on:
2222
- 'lib/fog/google.rb'
2323
# Trigger workflow on version upgrade
2424
- 'lib/fog/google/version.rb'
25+
# Trigger when workflow itself is updated
26+
- '.github/workflows/integration-compute-loadbalancing.yml'
27+
28+
# Setting hard concurrency limit for the project due to cleanup
29+
# TODO(fog-google#626): remove this once cleanup is fixed
30+
concurrency:
31+
group: ${{ github.workflow }}
32+
cancel-in-progress: false
33+
2534

2635
jobs:
2736
test:

.github/workflows/integration-compute-networking.yml

+8
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,14 @@ on:
2222
- 'lib/fog/google.rb'
2323
# Trigger workflow on version upgrade
2424
- 'lib/fog/google/version.rb'
25+
# Trigger when workflow itself is updated
26+
- '.github/workflows/integration-compute-networking.yml'
27+
28+
# Setting hard concurrency limit for the project due to cleanup
29+
# TODO(fog-google#626): remove this once cleanup is fixed
30+
concurrency:
31+
group: ${{ github.workflow }}
32+
cancel-in-progress: false
2533

2634
jobs:
2735
test:

.github/workflows/integration-monitoring.yml

+8
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,14 @@ on:
2323
- 'lib/fog/google.rb'
2424
# Trigger workflow on version upgrade
2525
- 'lib/fog/google/version.rb'
26+
# Trigger when workflow itself is updated
27+
- '.github/workflows/integration-monitoring.yml'
28+
29+
# Setting hard concurrency limit for the project due to cleanup
30+
# TODO(fog-google#626): remove this once cleanup is fixed
31+
concurrency:
32+
group: ${{ github.workflow }}
33+
cancel-in-progress: false
2634

2735
jobs:
2836
test:

.github/workflows/integration-pubsub.yml

+8
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,14 @@ on:
2323
- 'lib/fog/google.rb'
2424
# Trigger workflow on version upgrade
2525
- 'lib/fog/google/version.rb'
26+
# Trigger when workflow itself is updated
27+
- '.github/workflows/integration-pubsub.yml'
28+
29+
# Setting hard concurrency limit for the project due to cleanup
30+
# TODO(fog-google#626): remove this once cleanup is fixed
31+
concurrency:
32+
group: ${{ github.workflow }}
33+
cancel-in-progress: false
2634

2735
jobs:
2836
test:

.github/workflows/integration-sql.yml

+8
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,14 @@ on:
2323
- 'lib/fog/google.rb'
2424
# Trigger workflow on version upgrade
2525
- 'lib/fog/google/version.rb'
26+
# Trigger when workflow itself is updated
27+
- '.github/workflows/integration-sql.yml'
28+
29+
# Setting hard concurrency limit for the project due to cleanup
30+
# TODO(fog-google#626): remove this once cleanup is fixed
31+
concurrency:
32+
group: ${{ github.workflow }}
33+
cancel-in-progress: false
2634

2735
jobs:
2836
test:

.github/workflows/integration-storage.yml

+8
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,14 @@ on:
2424
- 'lib/fog/google.rb'
2525
# Trigger workflow on version upgrade
2626
- 'lib/fog/google/version.rb'
27+
# Trigger when workflow itself is updated
28+
- '.github/workflows/integration-storage.yml'
29+
30+
# Setting hard concurrency limit for the project due to cleanup
31+
# TODO(fog-google#626): remove this once cleanup is fixed
32+
concurrency:
33+
group: ${{ github.workflow }}
34+
cancel-in-progress: false
2735

2836
jobs:
2937
test:

.github/workflows/unit.yml

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ on:
66
pull_request:
77
branches: [ master ]
88

9+
# Cancel in-progress jobs of the same ref or run_id
10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
12+
cancel-in-progress: true
13+
914
jobs:
1015
test-unit:
1116
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)