From 1499631a29770ad1119280cecf8ab6ed032eb50c Mon Sep 17 00:00:00 2001 From: Nikolay Govorov Date: Sat, 21 Mar 2026 01:40:11 +0000 Subject: Return arm64 --- .forgejo/workflows/build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index c913439..9c85c67 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -17,7 +17,7 @@ env: jobs: lint: name: Static checks - runs-on: ubuntu-24.04 + runs-on: [ubuntu-24.04, x86_64] steps: - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 @@ -48,10 +48,10 @@ jobs: fail-fast: false matrix: include: - - runner: ubuntu-24.04 + - runner: [ubuntu-24.04, x86_64] arch: amd64 - # - runner: ubuntu-24.04-arm - # arch: arm64 + - runner: [ubuntu-24.04, aarch64] + arch: arm64 steps: - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 @@ -112,7 +112,7 @@ jobs: smoke: name: Smoke tests - runs-on: ubuntu-24.04 + runs-on: [ubuntu-24.04, x86_64] needs: [build] if: github.ref == 'refs/heads/main' steps: @@ -126,7 +126,7 @@ jobs: publish: name: Publish nightly build - runs-on: ubuntu-24.04 + runs-on: [ubuntu-24.04, x86_64] needs: [build, smoke] if: github.ref == 'refs/heads/main' permissions: -- Gilti