-
Notifications
You must be signed in to change notification settings - Fork 99
146 lines (129 loc) · 2.87 KB
/
image-pr.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
name: Build and test PRs
on:
pull_request:
paths:
- '**'
concurrency:
group: ci-image-${{ github.head_ref || github.ref }}-${{ github.repository }}
cancel-in-progress: true
env:
FORCE_COLOR: 1
jobs:
core:
uses: ./.github/workflows/reusable-build-flavor.yaml
with:
flavor: ubuntu
core-alpine:
uses: ./.github/workflows/reusable-build-flavor.yaml
with:
flavor: alpine
install:
uses: ./.github/workflows/reusable-install-test.yaml
with:
flavor: ubuntu
needs:
- core
install-alpine:
uses: ./.github/workflows/reusable-install-test.yaml
with:
flavor: alpine
needs:
- core-alpine
zfs:
uses: ./.github/workflows/reusable-zfs-test.yaml
with:
flavor: ubuntu
needs:
- core
acceptance:
uses: ./.github/workflows/reusable-qemu-acceptance-test.yaml
with:
flavor: ubuntu
needs:
- core
acceptance-alpine:
uses: ./.github/workflows/reusable-qemu-acceptance-test.yaml
with:
flavor: alpine
needs:
- core-alpine
bundles:
uses: ./.github/workflows/reusable-qemu-bundles-test.yaml
with:
flavor: ubuntu
needs:
- core
reset:
uses: ./.github/workflows/reusable-qemu-reset-test.yaml
with:
flavor: ubuntu
needs:
- core
reset-alpine:
uses: ./.github/workflows/reusable-qemu-reset-test.yaml
with:
flavor: alpine
needs:
- core-alpine
netboot:
uses: ./.github/workflows/reusable-qemu-netboot-test.yaml
with:
flavor: ubuntu
needs:
- core
netboot-alpine:
uses: ./.github/workflows/reusable-qemu-netboot-test.yaml
with:
flavor: alpine
needs:
- core-alpine
upgrade:
uses: ./.github/workflows/reusable-upgrade-with-cli-test.yaml
with:
flavor: ubuntu
needs:
- core
upgrade-alpine:
uses: ./.github/workflows/reusable-upgrade-with-cli-test.yaml
with:
flavor: alpine
needs:
- core-alpine
upgrade-latest:
uses: ./.github/workflows/reusable-upgrade-latest-test.yaml
with:
flavor: ubuntu
needs:
- core
encryption:
uses: ./.github/workflows/reusable-encryption-test.yaml
with:
flavor: ubuntu
label: ${{ matrix.label }}
needs:
- core
strategy:
fail-fast: true
matrix:
label:
- "local-encryption"
- "remote-auto"
- "remote-static"
- "remote-https-pinned"
- "remote-https-bad-cert"
encryption-alpine:
uses: ./.github/workflows/reusable-encryption-test.yaml
with:
flavor: alpine
label: ${{ matrix.label }}
needs:
- core-alpine
strategy:
fail-fast: true
matrix:
label:
- "local-encryption"
- "remote-auto"
- "remote-static"
- "remote-https-pinned"
- "remote-https-bad-cert"