Skip to content

Commit

Permalink
ci: Add revdep-ci for bootc
Browse files Browse the repository at this point in the history
This ensures when composefs changes, we don't break bootc.
This test isn't too expensive and should be reliable, so
I'm hopeful we can just enable it on every PR.

ref: #336
Signed-off-by: Colin Walters <[email protected]>
  • Loading branch information
cgwalters committed Sep 18, 2024
1 parent 2c001d2 commit 3cee444
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 0 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
target
30 changes: 30 additions & 0 deletions .github/workflows/ci-bootc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: revdep CI bootc

permissions:
actions: read

on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch: {}

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
c9s-bootc-e2e:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: build
run: sudo podman build -t localhost/test:latest -f ci/Containerfile.c9s-bootc .
- name: bootc install
run: |
set -xeuo pipefail
sudo podman run --env BOOTC_SKIP_SELINUX_HOST_CHECK=1 --rm -ti --privileged -v /:/target --pid=host --security-opt label=disable \
-v /dev:/dev -v /var/lib/containers:/var/lib/containers \
localhost/test:latest bootc install to-filesystem --skip-fetch-check \
--replace=alongside /target
10 changes: 10 additions & 0 deletions ci/Containerfile.c9s-bootc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM quay.io/centos/centos:stream9 as build
RUN dnf -y install dnf-utils zstd && dnf config-manager --enable crb && dnf builddep -y composefs && \
dnf -y install meson
COPY . /build
WORKDIR /build
RUN set -x; ls -al; meson setup target --prefix=/usr && meson compile -C target && \
env DESTDIR=$(pwd)/target/instroot meson install -C target

FROM quay.io/centos-bootc/centos-bootc-dev:stream9
COPY --from=build /build/target/instroot/usr/ /usr/

0 comments on commit 3cee444

Please sign in to comment.