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