| author | |
| committer | |
| log | 9a69aede0e250c136de5f1e1b33f072d4d744ffc |
| tree | 97698c22be41bc6f984e9ab2b4fe2c5258da1ff1 |
| parent | dbe0e0c1bc13f5bbb31b043174d278291df31f34 |
| signature |
1 files changed, 22 insertions(+), 0 deletions(-)
.github/workflows/riscv.yaml created+22| ... | @@ -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 | ||