From abd05b38195dd8b258505433555e52e3631edcfc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Tue, 18 Nov 2025 03:56:42 +0100 Subject: [PATCH] ci: enable s390x-linux jobs on 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 7a6ed634f7..1c2ac7d242 100644 --- a/.forgejo/workflows/ci.yaml +++ b/.forgejo/workflows/ci.yaml @@ -73,6 +73,26 @@ jobs: - name: Build and Test run: sh ci/riscv64-linux-release.sh timeout-minutes: 420 + s390x-linux-debug: + runs-on: [self-hosted, s390x-linux] + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Build and Test + run: sh ci/s390x-linux-debug.sh + timeout-minutes: 240 + s390x-linux-release: + runs-on: [self-hosted, s390x-linux] + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Build and Test + run: sh ci/s390x-linux-release.sh + timeout-minutes: 180 x86_64-freebsd-debug: runs-on: [self-hosted, x86_64-freebsd] steps: