From ceba095cb1fa1211554b9c25ab37e6ef88256059 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Fri, 16 Jan 2026 04:22:04 +0100 Subject: [PATCH] ci: re-enable riscv64-linux jobs on master pushes --- .forgejo/workflows/ci.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml index 884ee06c14..49835019ba 100644 --- a/.forgejo/workflows/ci.yaml +++ b/.forgejo/workflows/ci.yaml @@ -99,6 +99,29 @@ jobs: run: sh ci/powerpc64le-linux-release.sh timeout-minutes: 240 + riscv64-linux-debug: + if: github.event_name != 'pull_request' + runs-on: [self-hosted, riscv64-linux] + steps: + - name: Checkout + uses: https://codeberg.org/ziglang/checkout@19af6bac491e2534a4687a50ee84fa7f13258d28 + with: + fetch-depth: 0 + - name: Build and Test + run: sh ci/riscv64-linux-debug.sh + timeout-minutes: 600 + riscv64-linux-release: + if: github.event_name != 'pull_request' + runs-on: [self-hosted, riscv64-linux] + steps: + - name: Checkout + uses: https://codeberg.org/ziglang/checkout@19af6bac491e2534a4687a50ee84fa7f13258d28 + with: + fetch-depth: 0 + - name: Build and Test + run: sh ci/riscv64-linux-release.sh + timeout-minutes: 480 + s390x-linux-debug: runs-on: [self-hosted, s390x-linux] steps: