Skip to content

Commit 5b64a7c

Browse files
committed
Merge branch 'main' into ofed (default to RL9)
2 parents 3223846 + 7def8dc commit 5b64a7c

File tree

2 files changed

+20
-24
lines changed

2 files changed

+20
-24
lines changed

.github/workflows/fatimage.yml

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,12 @@
22
name: Build fat image
33
'on':
44
workflow_dispatch:
5-
# inputs:
6-
# use_RL9:
7-
# required: true
8-
# description: Include RL9 image build
9-
# type: boolean
10-
# default: false
11-
# push:
12-
# branches:
13-
# - ofed
5+
inputs:
6+
use_RL8:
7+
required: true
8+
description: Include RL8 image build
9+
type: boolean
10+
default: false
1411
jobs:
1512
openstack:
1613
name: openstack-imagebuild
@@ -19,11 +16,11 @@ jobs:
1916
strategy:
2017
matrix:
2118
os_version: [RL8, RL9]
22-
# rl9_selected:
23-
# - ${{ inputs.use_RL9 == true }} # only potentially true for workflow_dispatch
24-
# exclude:
25-
# - os_version: RL9
26-
# rl9_selected: false
19+
rl8_selected:
20+
- ${{ inputs.use_RL8 == true }} # only potentially true for workflow_dispatch
21+
exclude:
22+
- os_version: RL8
23+
rl8_selected: false
2724
env:
2825
ANSIBLE_FORCE_COLOR: True
2926
OS_CLOUD: openstack

.github/workflows/stackhpc.yml

Lines changed: 9 additions & 10 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,15 +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
27-
- ${{ 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
2827
exclude:
29-
- os_version: RL9
30-
rl9_selected: false
31-
rl9_branch: false
28+
- os_version: RL8
29+
rl8_selected: false
30+
rl8_branch: false
3231
env:
3332
ANSIBLE_FORCE_COLOR: True
3433
OS_CLOUD: openstack

0 commit comments

Comments
 (0)