From 254b3850b888a05d7a72cf3ef3d4985d726e3489 Mon Sep 17 00:00:00 2001 From: ahoneybun Date: Wed, 10 Dec 2025 17:33:11 -0700 Subject: [PATCH] Update .gitea/workflows/ci.yml --- .gitea/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index bbe4745..0b000f7 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -7,12 +7,18 @@ on: jobs: test-amd64: runs-on: ubuntu-24.04 + container: + image: ubuntu:24.04 + platform: linux/amd64 steps: - name: Print host info run: uname -a test-arm64: - runs-on: ubuntu-24.04-arm64 + runs-on: ubuntu-24.04 + container: + image: ubuntu:24.04 + platform: linux/arm64 steps: - name: Print host info run: uname -a \ No newline at end of file