File tree Expand file tree Collapse file tree 4 files changed +32
-0
lines changed Expand file tree Collapse file tree 4 files changed +32
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ceph : false
3
+ ceph_ansible : false
4
+ ceph_managed : false
5
+ ironic : false
6
+ ironic_automated_cleaning : true
7
+ kayobe_manages_physical_network : true
Original file line number Diff line number Diff line change
1
+ ---
2
+ ceph : true
3
+ ceph_ansible : false
4
+ ceph_managed : false
5
+ ironic : true
6
+ ironic_automated_cleaning : false
7
+ kayobe_manages_physical_network : false
Original file line number Diff line number Diff line change
1
+ ---
2
+ ceph : true
3
+ ceph_ansible : false
4
+ ceph_managed : false
5
+ ironic : true
6
+ ironic_automated_cleaning : true
7
+ kayobe_manages_physical_network : true
Original file line number Diff line number Diff line change 6
6
build :
7
7
name : Build OpenStack admin guide
8
8
runs-on : ubuntu-latest
9
+ strategy :
10
+ matrix :
11
+ deployment_yaml :
12
+ - __default__
13
+ - disable-ceph
14
+ - enable-ironic
15
+ - enable-ironic-no-cleaning-or-physnet
9
16
steps :
10
17
- uses : actions/checkout@v3
11
18
16
23
- name : Install Python dependencies
17
24
run : pip3 install -r requirements.txt
18
25
26
+ - name : Copy deployment.yml into place
27
+ run : cp .github/workflows/deployment_yaml/${{ matrix.deployment_yaml }}.yml source/data/deployment.yml
28
+ if : matrix.deployment_yaml != '__default__'
29
+
19
30
- name : Build HTML
20
31
run : make html
You can’t perform that action at this time.
0 commit comments