diff options
| author | Alex Rønne Petersen <alex@alexrp.com> | 2025-07-10 03:51:00 +0200 |
|---|---|---|
| committer | Alex Rønne Petersen <alex@alexrp.com> | 2025-07-12 03:24:28 +0200 |
| commit | bd97b66186dabb3533df1ea9eb650d7574496a59 (patch) | |
| tree | c254a8e28c867590194805a0f870bc074377424b /.github/workflows | |
| parent | 681d324c49e7cdc773cc891ea49ed69dd03c23c7 (diff) | |
| download | zig-bd97b66186dabb3533df1ea9eb650d7574496a59.tar.gz zig-bd97b66186dabb3533df1ea9eb650d7574496a59.zip | |
ci: Add riscv64-linux-debug and riscv64-linux-release
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yaml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index fd07b9add4..c0d3211dc1 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -50,6 +50,22 @@ jobs: uses: actions/checkout@v4 - name: Build and Test run: sh ci/aarch64-linux-release.sh + riscv64-linux-debug: + 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-debug.sh + riscv64-linux-release: + timeout-minutes: 780 + runs-on: [self-hosted, Linux, riscv64] + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Build and Test + run: sh ci/riscv64-linux-release.sh x86_64-macos-release: runs-on: "macos-13" env: |
