From f50b0d71363e16fdb3018715c74ccd8418ddd45f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Tue, 25 Nov 2025 22:21:25 +0100 Subject: [PATCH] ci: add aarch64-macos to Forgejo Actions --- .forgejo/workflows/ci.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml index cf035a48e7..531969bdaa 100644 --- a/.forgejo/workflows/ci.yaml +++ b/.forgejo/workflows/ci.yaml @@ -31,6 +31,26 @@ jobs: - name: Build and Test run: sh ci/aarch64-linux-release.sh timeout-minutes: 120 + aarch64-macos-debug: + runs-on: [self-hosted, aarch64-macos] + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Build and Test + run: sh ci/aarch64-macos-debug.sh + timeout-minutes: 180 + aarch64-macos-release: + runs-on: [self-hosted, aarch64-macos] + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Build and Test + run: sh ci/aarch64-macos-release.sh + timeout-minutes: 120 loongarch64-linux-debug: runs-on: [self-hosted, loongarch64-linux] steps: