Skip to content

Commit 7def8dc

Browse files
authored
use RL9 for CI by default (#385)
1 parent 3c2512d commit 7def8dc

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

.github/workflows/fatimage.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: Build fat image
33
'on':
44
workflow_dispatch:
55
inputs:
6-
use_RL9:
6+
use_RL8:
77
required: true
8-
description: Include RL9 image build
8+
description: Include RL8 image build
99
type: boolean
1010
default: false
1111
jobs:
@@ -16,11 +16,11 @@ jobs:
1616
strategy:
1717
matrix:
1818
os_version: [RL8, RL9]
19-
rl9_selected:
20-
- ${{ inputs.use_RL9 == true }} # only potentially true for workflow_dispatch
19+
rl8_selected:
20+
- ${{ inputs.use_RL8 == true }} # only potentially true for workflow_dispatch
2121
exclude:
22-
- os_version: RL9
23-
rl9_selected: false
22+
- os_version: RL8
23+
rl8_selected: false
2424
env:
2525
ANSIBLE_FORCE_COLOR: True
2626
OS_CLOUD: openstack

.github/workflows/stackhpc.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: Test deployment and reimage on OpenStack
33
on:
44
workflow_dispatch:
55
inputs:
6-
use_RL9:
6+
use_RL8:
77
required: true
8-
description: Include RL9 tests
8+
description: Include RL8 tests
99
type: boolean
1010
default: false
1111
push:
@@ -20,14 +20,14 @@ jobs:
2020
strategy:
2121
matrix:
2222
os_version: [RL8, RL9]
23-
rl9_selected:
24-
- ${{ inputs.use_RL9 == true }} # only potentially true for workflow_dispatch
25-
rl9_branch:
26-
- ${{ startsWith(github.head_ref, 'rl9') == true }} # only potentially for pull_request, always false on merge
23+
rl8_selected:
24+
- ${{ inputs.use_RL8 == true }} # only potentially true for workflow_dispatch
25+
rl8_branch:
26+
- ${{ startsWith(github.head_ref, 'rl8') == true }} # only potentially for pull_request, always false on merge
2727
exclude:
28-
- os_version: RL9
29-
rl9_selected: false
30-
rl9_branch: false
28+
- os_version: RL8
29+
rl8_selected: false
30+
rl8_branch: false
3131
env:
3232
ANSIBLE_FORCE_COLOR: True
3333
OS_CLOUD: openstack

0 commit comments

Comments
 (0)