wip #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
permissions: | |
actions: read | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: {} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
c9s-bootc-e2e: | |
runs-on: ubuntu-latest | |
steps: | |
# We use docker to build because it updates to the latest, whereas right now ubuntu-latest | |
# has podman and buildah from ~2021 (insane!) | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- uses: actions/checkout@v3 | |
- name: Cache Dependencies | |
uses: Swatinem/rust-cache@v2 | |
with: | |
key: "build-c9s" | |
- name: Build and export to Docker | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: ci/Containerfile.c9s | |
load: true | |
tags: localhost/bootupd | |
- name: Copy to podman | |
run: skopeo copy docker-daemon:localhost/bootupd containers-storage:localhost/bootupd | |
- name: bootc install | |
run: | | |
set -xeuo pipefail | |
sudo podman run --rm -ti --privileged -v /:/target --pid=host --security-opt label=disable \ | |
-v /var/lib/containers:/var/lib/containers \ | |
localhost/bootupd bootc install to-filesystem \ | |
--disable-selinux --replace=alongside /target |