From 591f2a9f5d21bd16d339cfd6699a2ded9309ea89 Mon Sep 17 00:00:00 2001 From: Timo Behrendt Date: Tue, 20 May 2025 21:05:46 +0200 Subject: [PATCH] ci: fix always run ci on amd64 (#17) Go still doesn't support `-race` in testing on arm64 Reviewed-on: https://gitea.t000-n.de/t.behrendt/tracebasedlogsampler/pulls/17 Co-authored-by: Timo Behrendt Co-committed-by: Timo Behrendt --- .gitea/workflows/ci.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 583ec19..60b4c8b 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -7,7 +7,9 @@ on: jobs: test: - runs-on: ubuntu-latest + runs-on: + - ubuntu-latest + - linux_amd64 steps: - uses: actions/checkout@v4 - uses: actions/setup-go@v5