File tree Expand file tree Collapse file tree 2 files changed +20
-24
lines changed Expand file tree Collapse file tree 2 files changed +20
-24
lines changed Original file line number Diff line number Diff line change 2
2
name : Build fat image
3
3
' on ' :
4
4
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
14
11
jobs :
15
12
openstack :
16
13
name : openstack-imagebuild
@@ -19,11 +16,11 @@ jobs:
19
16
strategy :
20
17
matrix :
21
18
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
27
24
env :
28
25
ANSIBLE_FORCE_COLOR : True
29
26
OS_CLOUD : openstack
Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ name: Test deployment and reimage on OpenStack
3
3
on :
4
4
workflow_dispatch :
5
5
inputs :
6
- use_RL9 :
6
+ use_RL8 :
7
7
required : true
8
- description : Include RL9 tests
8
+ description : Include RL8 tests
9
9
type : boolean
10
10
default : false
11
11
push :
@@ -20,15 +20,14 @@ jobs:
20
20
strategy :
21
21
matrix :
22
22
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
28
27
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
32
31
env :
33
32
ANSIBLE_FORCE_COLOR : True
34
33
OS_CLOUD : openstack
You can’t perform that action at this time.
0 commit comments