mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
ci: add riscv workflow with manual trigger for experimentation
This commit is contained in:
parent
dbe0e0c1bc
commit
9a69aede0e
1 changed files with 22 additions and 0 deletions
22
.github/workflows/riscv.yaml
vendored
Normal file
22
.github/workflows/riscv.yaml
vendored
Normal 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
|
||||||
Loading…
Add table
Reference in a new issue