-
Notifications
You must be signed in to change notification settings - Fork 13
264 lines (223 loc) · 7.65 KB
/
ci.yml
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
name: "CI"
on:
push:
branches:
- "master"
- "for-master"
- "patchset/**"
paths-ignore:
- "**.md"
jobs:
verify:
name: "Verify"
runs-on: ubuntu-24.04
steps:
- name: "Checkout Repository"
uses: actions/checkout@v4
- name: "Checkout Submodules"
run: |
git submodule set-url external/busybox/upstream /~https://github.com/mirror/busybox
git submodule update --init --recursive
- name: "Setup host"
run: |
sudo sysctl -w kernel.unprivileged_userns_clone=1 ||:
sudo sysctl -w kernel.apparmor_restrict_unprivileged_unconfined=0 ||:
sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0 ||:
- name: "Install Tools"
run: |
sudo apt-get -y -qq install \
gcc make automake autoconf pkg-config udev scdoc \
libkmod-dev libz-dev libbz2-dev liblzma-dev libzstd-dev libelf-dev libtirpc-dev libcrypt-dev
sudo apt-get -y -qq install astyle
sudo apt-get -y -qq install shellcheck
- name: "Configure"
run: |
./autogen.sh
./configure --enable-local-build
- name: "Build Sources"
run: |
make
- name: "Prepare Gittree"
run: |
git config --global user.email "ci@example.com"
git config --global user.name "GitHubCI commiter"
git commit -a -m 'CI: update git tree'
- name: "Indent-c"
run: |
make indent-c && git diff --exit-code
- name: "ShellCheck"
run: |
make verify
- name: "Check services"
run: |
export PATH="$PWD/external/libshell/upstream:$PATH"
make check-services
- name: "Unit Tests"
run: |
export PATH="$PWD/external/libshell/upstream:$PATH"
make check-unit
e2e-local:
name: "${{ matrix.name }} ${{ matrix.test }} ${{ matrix.testcase }}"
needs: [ verify ]
runs-on: ubuntu-latest
strategy:
matrix:
name: [
"altlinux",
"fedora",
"ubuntu",
]
test: [
"local",
]
testcase: [
"btrfs-subvol",
"efi-partition",
"efi-reqpartition",
"f2fs-partition",
"luks",
"luks+crypttab+noparam",
"luks+lukskey-noparam",
"luks+lukskey-plain",
"luks+lukskey-raw",
"luks-over-lvm",
"luks-over-raid1",
"lvm",
"lvm+luks",
"partition",
"partition+usr",
"pipeline",
"raid1",
"raid1+raid5",
"raid1-degraded",
"raid5",
"sdcard",
"xfs-partition",
"zfs-partition",
]
exclude:
- name: fedora
testcase: efi-partition
- name: fedora
testcase: efi-reqpartition
- name: fedora
testcase: zfs-partition
- name: ubuntu
testcase: efi-partition
- name: ubuntu
testcase: efi-reqpartition
- name: altlinux
testcase: zfs-partition
fail-fast: false
#max-parallel: 6
steps:
- name: "Prepare Node"
run: |
for m in kvm kvm-amd kvm-intel; do sudo modprobe -v "$m" ||:; done
test -c /dev/kvm && sudo chmod -v 666 /dev/kvm ||:
- name: "Install Packages"
run: |
sudo apt-get -qq -y update
sudo apt-get -qq -y install git expect qemu-kvm ovmf
- name: "Checkout Repository"
uses: actions/checkout@v4
- name: "Checkout Submodules"
run: |
git submodule set-url external/busybox/upstream /~https://github.com/mirror/busybox
git submodule update --init --recursive
- name: "Build Sources"
run: testing/testing-${{ matrix.name }}-${{ matrix.test }} test-root-${{ matrix.testcase }} build-git
- name: "Build Sysimage"
run: testing/testing-${{ matrix.name }}-${{ matrix.test }} test-root-${{ matrix.testcase }} build-sysimage
- name: "Build Kickstart"
run: testing/testing-${{ matrix.name }}-${{ matrix.test }} test-root-${{ matrix.testcase }} build-kickstart
- name: "Build Other Tools"
run: testing/testing-${{ matrix.name }}-${{ matrix.test }} test-root-${{ matrix.testcase }} build-tools
- name: "Run Kickstart"
env:
QEMU_TIMEOUT: 40m
QEMU_MEMORY: 1G
QEMU_DISK_FORMAT: qcow2
run: testing/testing-${{ matrix.name }}-${{ matrix.test }} test-root-${{ matrix.testcase }} run-kickstart
- name: "Run Services"
run: testing/testing-${{ matrix.name }}-${{ matrix.test }} test-root-${{ matrix.testcase }} run-services
- name: "Boot System"
env:
QEMU_TIMEOUT: 10m
QEMU_MEMORY: 1G
QEMU_DISK_FORMAT: qcow2
run: testing/testing-${{ matrix.name }}-${{ matrix.test }} test-root-${{ matrix.testcase }} run-boot
- name: "Archive Metrics"
uses: actions/upload-artifact@v4
with:
name: "metrics-${{ matrix.name }}-${{ matrix.test }}-${{ matrix.testcase }}"
path: testing/status/artifact-*.txt
if-no-files-found: ignore
retention-days: 1
e2e-network:
name: "${{ matrix.name }} ${{ matrix.test }} ${{ matrix.testcase }}"
needs: [ verify ]
runs-on: ubuntu-latest
strategy:
matrix:
name: [
"altlinux",
]
test: [
"sshfs",
]
testcase: [
"sshfs-network-dhcp",
"sshfs-network-static1",
]
fail-fast: false
steps:
- name: "Prepare Node"
run: |
for m in kvm kvm-amd kvm-intel; do sudo modprobe -v "$m" ||:; done
test -c /dev/kvm && sudo chmod -v 666 /dev/kvm ||:
- name: "Install packages"
run: |
sudo apt-get -qq -y update
sudo apt-get -qq -y install git qemu-kvm
- name: "Checkout Repository"
uses: actions/checkout@v4
- name: "Checkout submodules"
run: |
git submodule set-url external/busybox/upstream /~https://github.com/mirror/busybox
git submodule update --init --recursive
- name: "Build Sources"
run: testing/testing-${{ matrix.name }}-${{ matrix.test }} test-root-${{ matrix.testcase }} build-git
- name: "Build Sysimage"
run: testing/testing-${{ matrix.name }}-${{ matrix.test }} test-root-${{ matrix.testcase }} build-sysimage
- name: "Build Other Tools"
run: testing/testing-${{ matrix.name }}-${{ matrix.test }} test-root-${{ matrix.testcase }} build-tools
- name: "Run Services"
run: testing/testing-${{ matrix.name }}-${{ matrix.test }} test-root-${{ matrix.testcase }} run-services
- name: "Boot System"
env:
QEMU_TIMEOUT: 10m
QEMU_MEMORY: 1G
QEMU_DISK_FORMAT: qcow2
run: testing/testing-${{ matrix.name }}-${{ matrix.test }} test-root-${{ matrix.testcase }} run-boot
- name: "Archive Metrics"
uses: actions/upload-artifact@v4
with:
name: "metrics-${{ matrix.name }}-${{ matrix.test }}-${{ matrix.testcase }}"
path: testing/status/artifact-*.txt
if-no-files-found: ignore
retention-days: 1
metrics:
name: "Metrics"
needs: [ e2e-local, e2e-network ]
runs-on: ubuntu-latest
if: success() || failure()
steps:
- name: "Checkout Repository"
uses: actions/checkout@v4
- name: "Download Metrics"
uses: actions/download-artifact@v4
with:
path: artifacts
- name: "Summarize"
run: testing/generate-metrics artifacts > "$GITHUB_STEP_SUMMARY"