commit 9a69aede0e250c136de5f1e1b33f072d4d744ffc (tree) parent dbe0e0c1bc13f5bbb31b043174d278291df31f34 Author: Alex Rønne Petersen <alex@alexrp.com> Date: Wed, 16 Jul 2025 03:25:10 +0200 ci: add riscv workflow with manual trigger for experimentation Diffstat:
| A | .github/workflows/riscv.yaml | | | 22 | ++++++++++++++++++++++ |
1 file changed, 22 insertions(+), 0 deletions(-)
diff --git a/.github/workflows/riscv.yaml 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