Skip to content

Commit 0ad31f1

Browse files
committed
don't fail entire pipeline for experimental standalone
1 parent d931527 commit 0ad31f1

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

.github/workflows/docker.yaml

+12-1
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,24 @@ env:
2020
IMAGE_NAME: ${{ github.repository }}
2121

2222
jobs:
23+
build-base-standalone-test:
24+
strategy:
25+
fail-fast: false
26+
matrix:
27+
variant:
28+
# - base
29+
- base-standalone
30+
31+
uses: ./.github/workflows/docker-build.yml
32+
with:
33+
variant: ${{ matrix.variant }}
2334
build-base:
2435
strategy:
2536
fail-fast: false
2637
matrix:
2738
variant:
2839
- base
29-
- base-standalone
40+
# - base-standalone
3041

3142
uses: ./.github/workflows/docker-build.yml
3243
with:

base-standalone/Containerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
FROM ghcr.io/ultramarine-linux/ultramarine:41
3838
RUN --mount=type=cache,target=/var/cache \
39-
dnf5 install -y kernel systemd bootc bootupd ostree flatpak dbus dbus-daemon rpmdevtools make selinux-policy python3-pip 'dnf-command(config-manager)'
39+
dnf5 install -y kernel systemd bootc bootupd ostree flatpak dbus dbus-daemon rpmdevtools make selinux-policy python3-pip 'dnf-command(config-manager)' grub2-common grub2-pc grub2-efi-x64
4040
# COPY --from=builder /target-rootfs/ /
4141
RUN rm -rf /boot/*
4242
RUN mkdir -p /sysroot/ostree

0 commit comments

Comments
 (0)