| author | |
| committer | |
| log | bab0de92b72b24a3d14d69ec633edeb91b9d0ac4 |
| tree | 5fb58c79848b1ee6fd76ec16509e20dc53da7a36 |
| parent | 4ec232a3460b5daeefbf89ad197a78c6856fb1b0 |
| signature |
2 files changed, 18 insertions(+), 22 deletions(-)
.github/workflows/ci.yaml+18| ... | ... | @@ -50,6 +50,24 @@ jobs: |
| 50 | 50 | uses: actions/checkout@v4 |
| 51 | 51 | - name: Build and Test |
| 52 | 52 | run: sh ci/aarch64-linux-release.sh |
| 53 | riscv64-linux-debug: | |
| 54 | if: github.event_name == 'push' | |
| 55 | timeout-minutes: 360 | |
| 56 | runs-on: [self-hosted, Linux, riscv64] | |
| 57 | steps: | |
| 58 | - name: Checkout | |
| 59 | uses: actions/checkout@v4 | |
| 60 | - name: Build and Test | |
| 61 | run: sh ci/riscv64-linux-debug.sh | |
| 62 | riscv64-linux-release: | |
| 63 | if: github.event_name == 'push' | |
| 64 | timeout-minutes: 360 | |
| 65 | runs-on: [self-hosted, Linux, riscv64] | |
| 66 | steps: | |
| 67 | - name: Checkout | |
| 68 | uses: actions/checkout@v4 | |
| 69 | - name: Build and Test | |
| 70 | run: sh ci/riscv64-linux-release.sh | |
| 53 | 71 | x86_64-macos-release: |
| 54 | 72 | runs-on: "macos-13" |
| 55 | 73 | env: |
.github/workflows/riscv.yaml deleted-22| ... | ... | @@ -1,22 +0,0 @@ |
| 1 | name: riscv | |
| 2 | on: | |
| 3 | workflow_dispatch: | |
| 4 | permissions: | |
| 5 | contents: read | |
| 6 | jobs: | |
| 7 | riscv64-linux-debug: | |
| 8 | timeout-minutes: 360 | |
| 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: 360 | |
| 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 |