| ... | ... | @@ -1,15 +1,19 @@ |
| 1 | 1 | name: ci |
| 2 | |
| 2 | 3 | on: |
| 3 | 4 | pull_request: |
| 4 | 5 | push: |
| 5 | 6 | branches: |
| 6 | 7 | - master |
| 7 | 8 | workflow_dispatch: |
| 9 | |
| 8 | 10 | concurrency: |
| 9 | 11 | group: ${{ github.head_ref || github.run_id }}-${{ github.actor }} |
| 10 | 12 | cancel-in-progress: ${{ github.event_name == 'pull_request' }} |
| 13 | |
| 11 | 14 | permissions: |
| 12 | 15 | contents: read |
| 16 | |
| 13 | 17 | jobs: |
| 14 | 18 | aarch64-linux-debug: |
| 15 | 19 | runs-on: [self-hosted, aarch64-linux] |
| ... | ... | @@ -31,6 +35,7 @@ jobs: |
| 31 | 35 | - name: Build and Test |
| 32 | 36 | run: sh ci/aarch64-linux-release.sh |
| 33 | 37 | timeout-minutes: 120 |
| 38 | |
| 34 | 39 | aarch64-macos-debug: |
| 35 | 40 | runs-on: [self-hosted, aarch64-macos] |
| 36 | 41 | steps: |
| ... | ... | @@ -51,6 +56,7 @@ jobs: |
| 51 | 56 | - name: Build and Test |
| 52 | 57 | run: sh ci/aarch64-macos-release.sh |
| 53 | 58 | timeout-minutes: 120 |
| 59 | |
| 54 | 60 | loongarch64-linux-debug: |
| 55 | 61 | runs-on: [self-hosted, loongarch64-linux] |
| 56 | 62 | steps: |
| ... | ... | @@ -71,6 +77,7 @@ jobs: |
| 71 | 77 | - name: Build and Test |
| 72 | 78 | run: sh ci/loongarch64-linux-release.sh |
| 73 | 79 | timeout-minutes: 180 |
| 80 | |
| 74 | 81 | riscv64-linux-debug: |
| 75 | 82 | if: github.event_name != 'pull_request' |
| 76 | 83 | runs-on: [self-hosted, riscv64-linux] |
| ... | ... | @@ -93,6 +100,7 @@ jobs: |
| 93 | 100 | - name: Build and Test |
| 94 | 101 | run: sh ci/riscv64-linux-release.sh |
| 95 | 102 | timeout-minutes: 480 |
| 103 | |
| 96 | 104 | s390x-linux-debug: |
| 97 | 105 | runs-on: [self-hosted, s390x-linux] |
| 98 | 106 | steps: |
| ... | ... | @@ -113,6 +121,7 @@ jobs: |
| 113 | 121 | - name: Build and Test |
| 114 | 122 | run: sh ci/s390x-linux-release.sh |
| 115 | 123 | timeout-minutes: 240 |
| 124 | |
| 116 | 125 | x86_64-freebsd-debug: |
| 117 | 126 | runs-on: [self-hosted, x86_64-freebsd] |
| 118 | 127 | steps: |
| ... | ... | @@ -133,6 +142,7 @@ jobs: |
| 133 | 142 | - name: Build and Test |
| 134 | 143 | run: sh ci/x86_64-freebsd-release.sh |
| 135 | 144 | timeout-minutes: 120 |
| 145 | |
| 136 | 146 | x86_64-linux-debug: |
| 137 | 147 | runs-on: [self-hosted, x86_64-linux] |
| 138 | 148 | steps: |
| ... | ... | @@ -163,6 +173,7 @@ jobs: |
| 163 | 173 | - name: Build and Test |
| 164 | 174 | run: sh ci/x86_64-linux-release.sh |
| 165 | 175 | timeout-minutes: 480 |
| 176 | |
| 166 | 177 | x86_64-windows-debug: |
| 167 | 178 | runs-on: [self-hosted, x86_64-windows] |
| 168 | 179 | steps: |