From 9a69aede0e250c136de5f1e1b33f072d4d744ffc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Wed, 16 Jul 2025 03:25:10 +0200 Subject: [PATCH] ci: add riscv workflow with manual trigger for experimentation --- .github/workflows/riscv.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/riscv.yaml diff --git a/.github/workflows/riscv.yaml b/.github/workflows/riscv.yaml new file mode 100644 index 0000000000..b5baf43a6d --- /dev/null +++ b/.github/workflows/riscv.yaml @@ -0,0 +1,22 @@ +name: riscv +on: + workflow_dispatch: +permissions: + contents: read +jobs: + riscv64-linux-debug: + timeout-minutes: 1020 + runs-on: [self-hosted, Linux, riscv64] + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Build and Test + run: sh ci/riscv64-linux-debug.sh + riscv64-linux-release: + timeout-minutes: 900 + runs-on: [self-hosted, Linux, riscv64] + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Build and Test + run: sh ci/riscv64-linux-release.sh