Skip to content

Commit 634434b

Browse files
committed
allow concurrent RL8/RL9 CI tests
1 parent 908d8de commit 634434b

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/fatimage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Build fat image
33
'on':
44
workflow_dispatch:
55
concurrency:
6-
group: ${{ github.ref }}-{{ matrix.os_version }}-{{ matrix.build }} # to branch/PR + OS + build
6+
group: ${{ github.workflow }}-${{ github.ref }}-{{ matrix.os_version }}-{{ matrix.build }} # to branch/PR + OS + build
77
cancel-in-progress: true
88
jobs:
99
openstack:

.github/workflows/stackhpc.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,15 @@ on:
99
jobs:
1010
openstack:
1111
name: openstack-ci
12-
concurrency: ${{ github.ref }}-{{ matrix.os_version }} # to branch/PR + OS
12+
concurrency:
13+
group: ${{ github.workflow }}-${{ github.ref }}-{{ matrix.os_version }} # to branch/PR + OS
14+
cancel-in-progress: true
1315
runs-on: ubuntu-22.04
1416
strategy:
1517
matrix:
16-
os_version: [RL8, RL9]
18+
os_version:
19+
- RL8
20+
- RL9
1721
env:
1822
ANSIBLE_FORCE_COLOR: True
1923
OS_CLOUD: openstack

0 commit comments

Comments
 (0)