From 8def1efbc08b81a96607bc12e313d77eb99797bd Mon Sep 17 00:00:00 2001 From: Kroese Date: Fri, 17 Oct 2025 10:05:33 +0200 Subject: [PATCH 1/3] build: Validate JSON and YML files (#348) --- .dockerignore | 1 + .github/workflows/check.yml | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/.dockerignore b/.dockerignore index 258778b..154d44a 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,4 +1,5 @@ .dockerignore +.devcontainer .git .github .gitignore diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index a5c9da0..53c5c25 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -18,3 +18,8 @@ jobs: dockerfile: Dockerfile ignore: DL3008,DL3018,DL3020,DL3029,DL3059 failure-threshold: warning + - + name: Validate JSON and YML files + uses: GrantBirki/json-yaml-validate@v4 + with: + yaml_exclude_regex: ".*\\kubernetes\\.yml$" From b1d47f113b2a2c9e73a082232dac7c452ec75532 Mon Sep 17 00:00:00 2001 From: Kroese Date: Fri, 17 Oct 2025 13:31:46 +0200 Subject: [PATCH 2/3] feat: Load memory module (#349) --- src/entry.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/entry.sh b/src/entry.sh index 933be8b..bef9e8c 100644 --- a/src/entry.sh +++ b/src/entry.sh @@ -19,7 +19,9 @@ cd /run . network.sh # Initialize network . boot.sh # Configure boot . proc.sh # Initialize processor +. memory.sh # Check available memory . config.sh # Configure arguments +. finish.sh # Finish initialization trap - ERR From c3d9de925c03afb7d6b9d812c43dc576cb0764c6 Mon Sep 17 00:00:00 2001 From: Kroese Date: Fri, 17 Oct 2025 13:33:28 +0200 Subject: [PATCH 3/3] build: Update QEMU base image version to v7.25 (#350) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f3ce945..ae36a24 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ RUN apk --update --no-cache add unzip && \ rm -rf /tmp/* /var/tmp/* /var/cache/apk/* FROM scratch AS runner -COPY --from=qemux/qemu:7.24 / / +COPY --from=qemux/qemu:7.25 / / ARG VERSION_ARG="0.0" ARG VERSION_KVM_OPENCORE="v21"