aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat
-rw-r--r--.forgejo/workflows/build.yml12+6 −6
1 files 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: