Skip to content

Commit 9a69aed

Browse files
committed
ci: add riscv workflow with manual trigger for experimentation
1 parent dbe0e0c commit 9a69aed

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/riscv.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: riscv
2+
on:
3+
workflow_dispatch:
4+
permissions:
5+
contents: read
6+
jobs:
7+
riscv64-linux-debug:
8+
timeout-minutes: 1020
9+
runs-on: [self-hosted, Linux, riscv64]
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v4
13+
- name: Build and Test
14+
run: sh ci/riscv64-linux-debug.sh
15+
riscv64-linux-release:
16+
timeout-minutes: 900
17+
runs-on: [self-hosted, Linux, riscv64]
18+
steps:
19+
- name: Checkout
20+
uses: actions/checkout@v4
21+
- name: Build and Test
22+
run: sh ci/riscv64-linux-release.sh

0 commit comments

Comments
 (0)