-
Notifications
You must be signed in to change notification settings - Fork 19
230 lines (202 loc) · 7.9 KB
/
ci.yml
File metadata and controls
230 lines (202 loc) · 7.9 KB
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
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
merge_group:
env:
CARGO_TERM_COLOR: always
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
permissions:
contents: read
jobs:
nightly:
runs-on: ubuntu-24.04
steps:
- uses: dtolnay/rust-toolchain@nightly
- uses: actions/checkout@v6
- run: cargo +nightly -Z package-workspace package
fedora:
runs-on: ubuntu-24.04
container:
image: quay.io/fedora/fedora:latest
options: "--privileged --pid=host -v /var/tmp:/var/tmp --tmpfs /tmp:rw,exec,nosuid,nodev -v /:/run/host"
steps:
- run: dnf -y install cargo clippy composefs-devel e2fsprogs just rustfmt gcc-c++
- name: Enable fs-verity on /
run: tune2fs -O verity $(findmnt -vno SOURCE /run/host)
- uses: actions/checkout@v6
- name: Run all checks (clippy, fmt, feature combos, tests)
run: env CFS_TEST_TMPDIR=/run/host/var/tmp just check
# Fast smoke test — catches basic breakage before spending time on
# container builds and VM boots. Runs only the unprivileged tests
# directly on the runner (no container image, no root required).
smoke:
name: Unprivileged smoke test
runs-on: ubuntu-24.04
steps:
- name: Enable fs-verity on /
run: sudo tune2fs -O verity $(findmnt -vno SOURCE /)
- uses: actions/checkout@v6
- uses: bootc-dev/actions/bootc-ubuntu-setup@main
- uses: dtolnay/rust-toolchain@stable
- uses: taiki-e/install-action@nextest
- uses: Swatinem/rust-cache@v2
- run: just test-integration
# Fuzz smoke test — runs each fuzz target briefly to catch panics
# on malformed input. The extended run only fires on pushes to main.
fuzz:
name: Fuzz smoke test
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@nightly
- uses: extractions/setup-just@v4
- uses: Swatinem/rust-cache@v2
with:
workspaces: crates/composefs/fuzz
- name: Install cargo-fuzz
# Use cargo-fuzz 0.13.1 without --locked so cargo resolves fresh deps;
# the published lockfile pins rustix 0.36 which fails to compile with
# nightly ≥ 1.97 (rustc_layout_scalar_valid_range_* now reserved for
# the compiler).
run: cargo install cargo-fuzz@0.13.1
- name: Generate corpus
run: just generate-corpus
- name: Run fuzz targets
run: just fuzz-all
- name: Upload fuzz artifacts on failure
if: failure()
uses: actions/upload-artifact@v7
with:
name: fuzz-artifacts
path: |
crates/composefs/fuzz/artifacts/
target/fuzz-logs/
# Full integration tests: builds a bootc container image, runs all
# tests (both unprivileged and privileged). Privileged tests execute
# inside bcvk ephemeral VMs booted from the container image.
integration:
name: Integration tests (${{ matrix.name }})
needs: smoke
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
include:
- name: centos-stream9
base_image: quay.io/centos-bootc/centos-bootc:stream9
cfsctl_features: rhel9
- name: centos-stream10
base_image: quay.io/centos-bootc/centos-bootc:stream10
cfsctl_features: pre-6.15
- name: debian
base_image: ghcr.io/bootcrew/debian-bootc:latest
cfsctl_features: oci
env:
COMPOSEFS_BASE_IMAGE: ${{ matrix.base_image }}
COMPOSEFS_CFSCTL_FEATURES: ${{ matrix.cfsctl_features }}
steps:
- uses: actions/checkout@v6
- name: Setup
uses: bootc-dev/actions/bootc-ubuntu-setup@main
with:
libvirt: true
- uses: dtolnay/rust-toolchain@stable
- uses: taiki-e/install-action@nextest
- uses: Swatinem/rust-cache@v2
- name: Run integration tests (unprivileged + privileged via VM)
run: just test-integration-vm
examples:
name: Example tests (${{ matrix.example.dir }}/${{ matrix.example.os }})
runs-on: ubuntu-24.04
strategy:
matrix:
example:
# Disabled: Linux 7.0 kernel regression breaks composefs fsverity boot
# ("has no fs-verity digest"); see https://github.com/bootc-dev/bootc/issues/2174
# - { dir: 'bls', os: 'arch' }
# - { dir: 'uki', os: 'arch' }
- { dir: 'bls', os: 'fedora' }
- { dir: 'bls', os: 'fedora-compat' }
# This one is currently failing, needs debugging
# - { dir: 'bls', os: 'rawhide' }
- { dir: 'bls', os: 'rhel9' }
# This one is currently failing, needs debugging
# https://github.com/containers/composefs-rs/pull/168#pullrequestreview-3088673152
# We believe it's mount API changes causing /sysroot to be mounted
# at the wrong place.
# - { dir: 'bls', os: 'ubuntu' }
- { dir: 'uki', os: 'fedora' }
- { dir: 'unified', os: 'fedora' }
- { dir: 'unified-secureboot', os: 'fedora' }
- { dir: 'bls', os: 'arch', fsfmt: 'ext4', verity: 'none' }
- { dir: 'bls', os: 'arch', fsfmt: 'xfs', verity: 'none' }
fail-fast: false
steps:
- name: Enable fs-verity on /
run: sudo tune2fs -O verity $(findmnt -vno SOURCE /)
- name: Setup /dev/kvm
run: |
set -eux
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm.rules
echo 'KERNEL=="vhost-vsock", GROUP="kvm", MODE="0666", OPTIONS+="static_node=vhost-vsock"' | sudo tee /etc/udev/rules.d/99-vhost-vsock.rules
sudo udevadm control --reload-rules
sudo udevadm trigger --settle
ls -l /dev/kvm /dev/vhost-vsock
- name: Install dependencies
run: |
echo 'deb-src http://azure.archive.ubuntu.com/ubuntu noble main' | sudo tee /etc/apt/sources.list.d/debsrc.list
sudo apt-get update
sudo apt-get install -y \
erofs-utils \
fsverity \
mtools \
python3-pytest-asyncio \
qemu-kvm \
systemd-boot-efi
- name: Get a newer podman for heredoc support (from plucky)
run: |
echo 'deb http://azure.archive.ubuntu.com/ubuntu plucky universe main' | sudo tee /etc/apt/sources.list.d/plucky.list
sudo apt update
sudo apt install -y crun/plucky podman/plucky
- uses: actions/checkout@v6
- name: Check cache for patched tools
uses: actions/cache@v5
with:
path: ~/bin
key: patched-tools-bin-${{ hashFiles('examples/common/install-patched-tools') }}
- name: Ensure patched tools are installed
run: |
set -eux
if [ ! -x "$HOME/bin/mkfs.ext4" ]; then
sudo apt-get build-dep systemd e2fsprogs
mkdir ~/bin
examples/common/install-patched-tools ~/bin
fi
- name: Install systemd-ssh-proxy polyfill
run: sudo cp examples/bls/test-thing.workarounds/systemd-ssh-proxy /usr/lib/systemd
- name: Run example tests
run: |
export PATH="${HOME}/bin:${PATH}"
export FS_FORMAT=${{ matrix.example.fsfmt }}
export FS_VERITY_MODE=${{ matrix.example.verity }}
examples/test/run ${{ matrix.example.dir }} ${{ matrix.example.os }}
# Sentinel job for required checks — configure this job name in
# repository settings as the single required status check.
required-checks:
if: always()
needs: [nightly, fedora, smoke, fuzz, integration, examples]
runs-on: ubuntu-latest
steps:
- run: exit 1
if: >-
needs.nightly.result != 'success' ||
needs.fedora.result != 'success' ||
needs.smoke.result != 'success' ||
needs.fuzz.result != 'success' ||
needs.integration.result != 'success' ||
needs.examples.result != 'success'