-
Notifications
You must be signed in to change notification settings - Fork 33
367 lines (333 loc) · 11.4 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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
name: CI
on:
push:
branches:
- main
- ubuntu/**
pull_request:
branches:
- main
- ubuntu/**
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
flutter-analyze:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: asdf-vm/actions/install@v3
- uses: bluefireteam/melos-action@v3
- run: melos analyze --fatal-infos
bootstrap:
runs-on: ubuntu-24.04
strategy:
matrix:
target:
- ubuntu_bootstrap_test.dart
- screenshot_test.dart
fail-fast: false
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: asdf-vm/actions/install@v3
- uses: bluefireteam/melos-action@v3
- run: |
sudo apt update
sudo apt install -y clang cmake curl gsettings-desktop-schemas libgtk-3-dev ninja-build pkg-config unzip
sudo apt install -y dbus-x11 network-manager upower
make install_deps
- run: |
sudo loginctl enable-linger $USER
sudo systemctl start user@$UID.service
echo "XDG_RUNTIME_DIR=/run/user/$UID" >> $GITHUB_ENV
# write any setting to force-start dconf.service (via xvfb because dbus-launch needs a display)
xvfb-run -a gsettings set org.gnome.desktop.interface color-scheme "'default'"
- run: xvfb-run -a -s '-screen 0 1024x768x24 +extension GLX' flutter test integration_test/${{matrix.target}}
working-directory: apps/ubuntu_bootstrap
env:
SUBIQUITY_REPLAY_TIMESCALE: 100
flutter-format:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: asdf-vm/actions/install@v3
- uses: bluefireteam/melos-action@v3
- run: melos format:exclude
init-e2e:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: asdf-vm/actions/install@v3
- uses: bluefireteam/melos-action@v3
- name: Install dependencies
run: |
sudo apt update
sudo apt install -y clang cmake curl gsettings-desktop-schemas libgtk-3-dev ninja-build pkg-config unzip
sudo apt install -y gnome-initial-setup network-manager
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "./provd/go.mod"
- name: Build provd
run: go build ./cmd/provd
working-directory: provd
- name: Run provd
run: |
set -ux
set +e
mv provd/example.config.yaml provd/provd.yaml
sudo mkdir -p /run/gnome-initial-setup/desktop-provision
sudo chown $USER /run/gnome-initial-setup/desktop-provision
sudo provd/provd &
until [ -S /run/gnome-initial-setup/desktop-provision/init.socket ]; do
sleep 1
done
sudo chmod go+rw /run/gnome-initial-setup/desktop-provision/init.socket
- run: xvfb-run -a -s '-screen 0 1024x768x24 +extension GLX' flutter test integration_test/e2e_test.dart
working-directory: apps/ubuntu_init
init:
runs-on: ubuntu-24.04
strategy:
matrix:
target:
- ubuntu_init_test.dart
- screenshot_test.dart
fail-fast: false
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: asdf-vm/actions/install@v3
- uses: bluefireteam/melos-action@v3
- run: sudo apt update
- run: sudo apt install -y clang cmake curl gsettings-desktop-schemas libgtk-3-dev ninja-build pkg-config unzip
- run: xvfb-run -a -s '-screen 0 1024x768x24 +extension GLX' flutter test integration_test/${{matrix.target}}
working-directory: apps/ubuntu_init
flutter-mocks:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: asdf-vm/actions/install@v3
- uses: bluefireteam/melos-action@v3
- run: melos generate
- name: Check for outdated mocks
if: github.event_name == 'pull_request'
run: ./.github/scripts/check-outdated-files.sh
- name: Create PR
if: github.event_name == 'push'
uses: peter-evans/create-pull-request@v6
with:
add-paths: "**/*.mocks.dart"
title: "chore: regenerate mocks"
commit-message: "chore: regenerate mocks"
branch: create-pull-request/mocks
delete-branch: true
l10n:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: asdf-vm/actions/install@v3
- uses: bluefireteam/melos-action@v3
- run: melos gen-l10n
- name: Check for outdated l10n
if: github.event_name == 'pull_request'
run: ./.github/scripts/check-outdated-files.sh
- name: Create PR
if: github.event_name == 'push'
uses: peter-evans/create-pull-request@v6
with:
add-paths: "**/l10n/*.dart"
title: "chore: regenerate l10n"
commit-message: "chore: regenerate l10n"
branch: create-pull-request/l10n
delete-branch: true
flutter-tests:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: asdf-vm/actions/install@v3
- uses: bluefireteam/melos-action@v3
- name: Install dependencies
run: |
sudo apt update && sudo apt install lcov
make install_deps
- name: Setup environment
run: |
sudo loginctl enable-linger $USER
sudo systemctl start user@$UID.service
echo "XDG_RUNTIME_DIR=/run/user/$UID" >> $GITHUB_ENV
- run: melos coverage
- uses: codecov/codecov-action@v4
with:
flags: UI
token: ${{secrets.CODECOV_TOKEN}}
- name: Cache coverage files
uses: actions/cache@v4
with:
path: |
apps/*/coverage/lcov.info
packages/*/coverage/lcov.info
key: ${{ github.sha }}-flutter-test-coverage
go-sanity:
name: "Go: Code sanity"
runs-on: ubuntu-24.04
steps:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt install -y libgtk-3-dev
- uses: actions/checkout@v4
- name: Go code sanity check
uses: canonical/desktop-engineering/gh-actions/go/code-sanity@main
with:
golangci-lint-configfile: ".golangci.yaml"
tools-directory: "./provd/tools"
working-directory: "./provd"
- name: Build cmd/provd
run: |
set -eu
cd provd
go build ./cmd/provd
go-tests:
name: "Go: Tests"
runs-on: ubuntu-24.04
steps:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt install -y gsettings-desktop-schemas libgtk-3-dev debhelper dh-golang golang-go
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "./provd/go.mod"
- name: Run tests
run: |
set -eu
cd provd
go test -coverpkg=./... -coverprofile=/tmp/coverage.out -covermode=set ./... -shuffle=on
- name: Run tests (with race detector)
run: |
cd provd
go test -race ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
file: /tmp/coverage.out
flags: provd
token: ${{secrets.CODECOV_TOKEN}}
- name: Cache coverage files
uses: actions/cache@v4
with:
path: /tmp/coverage.out
key: ${{ github.sha }}-go-test-coverage
build-and-upload:
if: github.event_name == 'push'
needs: go-tests
runs-on: ubuntu-24.04
strategy:
matrix:
platform: [x86_64, arm64]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up QEMU
if: matrix.platform == 'arm64'
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
if: matrix.platform == 'arm64'
uses: docker/setup-buildx-action@v3
- name: Build Debian package in Ubuntu Docker container
run: |
if [ "${{ matrix.platform }}" == "x86_64" ]; then
docker run --rm -v $(pwd):/workspace -w /workspace/provd ubuntu:noble bash -c "
apt-get update &&
apt-get install -y gsettings-desktop-schemas libgtk-3-dev debhelper dh-golang golang-go &&
dpkg-buildpackage -us -uc -b &&
mv ../provd_*.deb ../provd-${{ matrix.platform }}.deb
"
else
docker run --rm --platform linux/arm64 -v $(pwd):/workspace -w /workspace/provd ubuntu:noble bash -c "
apt-get update &&
apt-get install -y gsettings-desktop-schemas libgtk-3-dev libglib2.0-dev debhelper dh-golang golang-go &&
dpkg-buildpackage -us -uc -b &&
mv ../provd_*.deb ../provd-${{ matrix.platform }}.deb
"
fi
- name: Upload Debian package
uses: actions/upload-artifact@v4
with:
name: provd-deb-package-${{ matrix.platform }}
path: provd-${{ matrix.platform }}.deb
tics-coverage:
name: Convert and upload coverage reports for TiCS
if: github.event_name == 'push'
runs-on: ubuntu-24.04
needs:
- flutter-tests
- go-tests
steps:
- uses: actions/checkout@v4
- uses: asdf-vm/actions/install@v3
- uses: bluefireteam/melos-action@v3
- uses: actions/setup-go@v5
with:
go-version-file: "./provd/go.mod"
- name: Restore Flutter coverage files from cache
uses: actions/cache@v4
with:
path: |
apps/*/coverage/lcov.info
packages/*/coverage/lcov.info
key: ${{ github.sha }}-flutter-test-coverage
- name: Restore Go coverage files from cache
uses: actions/cache@v4
with:
path: /tmp/coverage.out
key: ${{ github.sha }}-go-test-coverage
- name: Install dependencies
run: |
dart pub global activate cobertura
go install github.com/axw/gocov/gocov@latest
go install github.com/AlekSi/gocov-xml@latest
- name: Convert Flutter coverage files to cobertura XML
run: |
mkdir coverage
for package in provd_client subiquity_client subiquity_test ubuntu_provision ubuntu_utils ubuntu_wizard; do
pushd packages/$package
cobertura convert
sed -i 's/branches-covered/decisions-covered/g' coverage/cobertura.xml
mv coverage/cobertura.xml ../../coverage/$package.xml
popd
done
for app in ubuntu_bootstrap ubuntu_init; do
pushd apps/$app
cobertura convert
sed -i 's/branches-covered/decisions-covered/g' coverage/cobertura.xml
mv coverage/cobertura.xml ../../coverage/$app.xml
popd
done
- name: Convert Go coverage files to cobertura XML
run: |
gocov convert /tmp/coverage.out | gocov-xml > coverage/report_co.xml
- name: Upload coverage reports
uses: actions/upload-artifact@v4
with:
name: tics-coverage-reports
path: coverage/*