From 841f7c87af901756ae57cb3457630f98d834732a Mon Sep 17 00:00:00 2001 From: Cedric Bail Date: Sat, 18 Jan 2025 15:55:55 -0700 Subject: [PATCH] Enable CI on arm host. --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ad9a68c..f09e5d4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,10 +4,10 @@ on: [push,pull_request] jobs: test: name: "Test images" - runs-on: "ubuntu-latest" strategy: fail-fast: false matrix: + runner: [ubuntu-latest, ubuntu-24.04-arm] go-version: ["1.19.x"] target: - os: linux @@ -22,6 +22,8 @@ jobs: # - os: freebsd # arch: -arm64 + runs-on: ${{ matrix.runner }} + steps: - name: Setup Go environment uses: actions/setup-go@v3