From af8f715a0a9bb0eac48a545aaa03dc76373b66c2 Mon Sep 17 00:00:00 2001 From: Andrew t Middleton Date: Fri, 4 Sep 2026 23:26:46 -0600 Subject: [PATCH 1/6] test (#1) * Image metadata from features * Avoid retagging a previously pulled image * Image metadata from config * Image metadata tests * Metadata with unsubstitued config * test --------- Co-authored-by: Christof Marti Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: Cleanskiier27 <220620570+Cleanskiier27@users.noreply.github.com> From 5198c53b052e2a4da1859d30579d007e8bba35d1 Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Sat, 5 Sep 2026 00:05:40 -0600 Subject: [PATCH 2/6] Make Dev Containers CI ignore non-fatal Podman diagnostics failures (#2) * Initial plan * Make Podman diagnostics non-fatal in CI Co-authored-by: Cleanskiier27 <220620570+Cleanskiier27@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: Cleanskiier27 <220620570+Cleanskiier27@users.noreply.github.com> --- .github/workflows/dev-containers.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dev-containers.yml b/.github/workflows/dev-containers.yml index 2f763a1bb..39cb149d5 100644 --- a/.github/workflows/dev-containers.yml +++ b/.github/workflows/dev-containers.yml @@ -107,8 +107,8 @@ jobs: run: | docker info docker buildx version - podman info - podman buildx version + podman info || true + podman buildx version || true - name: Install Dependencies run: | yarn install --frozen-lockfile From 1a27df30bfe1011a55896cca9119c929b91d878a Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Sat, 5 Sep 2026 00:06:40 -0600 Subject: [PATCH 3/6] Install matching crun in Podman CI setup (#3) Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: Cleanskiier27 <220620570+Cleanskiier27@users.noreply.github.com> --- .github/workflows/dev-containers.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/dev-containers.yml b/.github/workflows/dev-containers.yml index 39cb149d5..f4a43646d 100644 --- a/.github/workflows/dev-containers.yml +++ b/.github/workflows/dev-containers.yml @@ -98,11 +98,20 @@ jobs: --target podman \ --tag podman-5.5.2-builder \ 'https://github.com/mgoltzsche/podman-static.git#9ccf992536ecf0a4a3b82ac27fc708f00ab141ab' + docker build \ + --target crun \ + --tag crun-builder \ + 'https://github.com/mgoltzsche/podman-static.git#9ccf992536ecf0a4a3b82ac27fc708f00ab141ab' container_id=$(docker create podman-5.5.2-builder) docker cp "${container_id}:/usr/local/bin/podman" podman docker rm "${container_id}" + container_id=$(docker create crun-builder) + docker cp "${container_id}:/usr/local/bin/crun" crun + docker rm "${container_id}" sudo install -m 0755 podman /usr/local/bin/podman + sudo install -m 0755 crun /usr/local/bin/crun podman --version + crun --version - name: Tools Info run: | docker info From dc6fa3adf1b22acb6acaec50ecc0f359ef02ccda Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Sat, 5 Sep 2026 00:10:50 -0600 Subject: [PATCH 4/6] Initial plan (#5) From e98dd17cd726efeba60ec5ed5177573c5b501c80 Mon Sep 17 00:00:00 2001 From: Andrew t Middleton Date: Sat, 5 Sep 2026 00:32:58 -0600 Subject: [PATCH 5/6] moonbase.alpha --- .vscode/settings.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index cd5223cb5..5f60547a9 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -34,5 +34,8 @@ "editor.insertSpaces": false, "editor.tabSize": 4, "editor.defaultFormatter": "vscode.json-language-features" - } + }, + "githubPullRequests.ignoredPullRequestBranches": [ + "main" + ] } \ No newline at end of file From 67504d59b0b456f21f8ddc9984376ced9dd20050 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 5 Sep 2026 06:43:20 +0000 Subject: [PATCH 6/6] Overwrite /usr/bin/crun with statically compiled version in workflow Co-authored-by: Cleanskiier27 <220620570+Cleanskiier27@users.noreply.github.com> --- .github/workflows/dev-containers.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/dev-containers.yml b/.github/workflows/dev-containers.yml index f4a43646d..90e3e1080 100644 --- a/.github/workflows/dev-containers.yml +++ b/.github/workflows/dev-containers.yml @@ -110,6 +110,7 @@ jobs: docker rm "${container_id}" sudo install -m 0755 podman /usr/local/bin/podman sudo install -m 0755 crun /usr/local/bin/crun + sudo install -m 0755 crun /usr/bin/crun podman --version crun --version - name: Tools Info