From fe514eedf8f9b4fc9293054657fae829f74f3f85 Mon Sep 17 00:00:00 2001 From: Marc Kleine-Budde Date: Thu, 20 Jun 2024 08:11:40 +0200 Subject: [PATCH] github-actions: add debian:experimental --- .github/workflows/compile.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index a08c9d81..5c045a83 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -17,18 +17,21 @@ jobs: - "debian:stable-slim" - "debian:testing-slim" - "debian:unstable-slim" + - "debian:experimental" steps: - uses: actions/checkout@v4 - name: Prepare ${{ matrix.release }} container + env: + release: ${{ matrix.release == 'debian:experimental' && '-t experimental' || '' }} run: | podman version podman run --name stable -di --userns=keep-id:uid=1000,gid=1000 -v "$PWD":/home -w /home ${{ matrix.release }} bash podman exec -i stable uname -a podman exec -i stable id podman exec -i -u root stable apt update - podman exec -e DEBIAN_FRONTEND='noninteractive' -i -u root stable apt install -o APT::Install-Suggests=false -qy \ + podman exec -e DEBIAN_FRONTEND='noninteractive' -i -u root stable apt install -o APT::Install-Suggests=false -qy ${release} \ clang \ cmake \ gcc \