From c136a8d53b9f962dbfc53105b109f2571f1f363e Mon Sep 17 00:00:00 2001 From: ahoneybun Date: Wed, 10 Dec 2025 14:58:35 -0700 Subject: [PATCH] Update .gitea/workflows/ci.yml --- .gitea/workflows/ci.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 2d81d00..14651dc 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -5,16 +5,16 @@ on: branches: [ main ] jobs: - uname: + test-amd64: runs-on: ubuntu-24.04 steps: - name: Print host info - run: | - echo "Runner hostname: $(hostname)" - apt -v - - arm-test: + run: uname -a + + test-arm64: + runs-on: ubuntu-24.04 + container: + image: arm64v8/alpine + options: --platform=linux/arm64 steps: - - name: uname - run: | - docker run --platform=linux/arm64/v8 --rm -t arm64v8/ubuntu uname -m \ No newline at end of file + - run: uname -a \ No newline at end of file