Commit 9a69aede0e

Alex Rønne Petersen <alex@alexrp.com>
2025-07-16 03:25:10
ci: add riscv workflow with manual trigger for experimentation
1 parent dbe0e0c
Changed files (1)
.github
workflows
.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