Skip to content

feat: add systemd-dev package to oracular and testing #5

feat: add systemd-dev package to oracular and testing

feat: add systemd-dev package to oracular and testing #5

Workflow file for this run

name: Test Docker Images
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
matrix-builder:
runs-on: ubuntu-24.04
outputs:
includes: ${{ steps.builder.outputs.includes }}
steps:
- name: Build Matrix
id: builder
uses: regolith-linux/actions/build-matrix@main
with:
type: "platform"
stage: "unstable"
arch: "amd64"
build:
runs-on: ubuntu-24.04
needs: matrix-builder
strategy:
fail-fast: false
matrix:
include: ${{ fromJSON(needs.matrix-builder.outputs.includes) }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Generate Packages List
run: |
packages="$(cat common-packages | grep -v "#" | tr '\n' ' ')"
packages+=" $(cat "${{ matrix.distro }}/${{ matrix.codename }}/additional-packages" | grep -v "#" | tr '\n' ' ')"
echo "packages=$packages" >> $GITHUB_ENV
- name: Build ci-${{ matrix.distro }}:${{ matrix.codename }}-${{ matrix.arch }} Image
uses: docker/[email protected]
with:
context: .
platforms: "linux/${{ matrix.arch }}"
push: false
build-args: |
"REFERENCE=${{ matrix.distro }}:${{ matrix.codename }}"
"PACKAGES=${{ env.packages }}"
file: ${{ matrix.distro }}/Dockerfile
tags: ci-${{ matrix.distro }}:${{ matrix.codename }}-${{ matrix.arch }}