ci: add riscv workflow with manual trigger for experimentation

This commit is contained in:
Alex Rønne Petersen 2025-07-16 03:25:10 +02:00
parent dbe0e0c1bc
commit 9a69aede0e
No known key found for this signature in database

22
.github/workflows/riscv.yaml vendored Normal file
View file

@ -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