| ... | @@ -1,100 +0,0 @@ |
| 1 | name: ci |
| 2 | on: |
| 3 | pull_request: |
| 4 | push: |
| 5 | branches: |
| 6 | - master |
| 7 | concurrency: |
| 8 | # Cancels pending runs when a PR gets updated. |
| 9 | group: ${{ github.head_ref || github.run_id }}-${{ github.actor }} |
| 10 | cancel-in-progress: true |
| 11 | permissions: |
| 12 | # Sets permission policy for `GITHUB_TOKEN` |
| 13 | contents: read |
| 14 | jobs: |
| 15 | x86_64-linux-debug: |
| 16 | timeout-minutes: 540 |
| 17 | runs-on: [self-hosted, Linux, x86_64] |
| 18 | steps: |
| 19 | - name: Checkout |
| 20 | uses: actions/checkout@v4 |
| 21 | with: |
| 22 | fetch-depth: 0 |
| 23 | - name: Build and Test |
| 24 | run: sh ci/x86_64-linux-debug.sh |
| 25 | x86_64-linux-debug-llvm: |
| 26 | timeout-minutes: 540 |
| 27 | runs-on: [self-hosted, Linux, x86_64] |
| 28 | steps: |
| 29 | - name: Checkout |
| 30 | uses: actions/checkout@v4 |
| 31 | with: |
| 32 | fetch-depth: 0 |
| 33 | - name: Build and Test |
| 34 | run: sh ci/x86_64-linux-debug-llvm.sh |
| 35 | x86_64-linux-release: |
| 36 | timeout-minutes: 540 |
| 37 | runs-on: [self-hosted, Linux, x86_64] |
| 38 | steps: |
| 39 | - name: Checkout |
| 40 | uses: actions/checkout@v4 |
| 41 | with: |
| 42 | fetch-depth: 0 |
| 43 | - name: Build and Test |
| 44 | run: sh ci/x86_64-linux-release.sh |
| 45 | aarch64-linux-debug: |
| 46 | runs-on: [self-hosted, Linux, aarch64] |
| 47 | steps: |
| 48 | - name: Checkout |
| 49 | uses: actions/checkout@v4 |
| 50 | with: |
| 51 | fetch-depth: 0 |
| 52 | - name: Build and Test |
| 53 | run: sh ci/aarch64-linux-debug.sh |
| 54 | aarch64-linux-release: |
| 55 | runs-on: [self-hosted, Linux, aarch64] |
| 56 | steps: |
| 57 | - name: Checkout |
| 58 | uses: actions/checkout@v4 |
| 59 | with: |
| 60 | fetch-depth: 0 |
| 61 | - name: Build and Test |
| 62 | run: sh ci/aarch64-linux-release.sh |
| 63 | aarch64-macos-debug: |
| 64 | runs-on: [self-hosted, macOS, aarch64] |
| 65 | steps: |
| 66 | - name: Checkout |
| 67 | uses: actions/checkout@v4 |
| 68 | with: |
| 69 | fetch-depth: 0 |
| 70 | - name: Build and Test |
| 71 | run: ci/aarch64-macos-debug.sh |
| 72 | aarch64-macos-release: |
| 73 | runs-on: [self-hosted, macOS, aarch64] |
| 74 | steps: |
| 75 | - name: Checkout |
| 76 | uses: actions/checkout@v4 |
| 77 | with: |
| 78 | fetch-depth: 0 |
| 79 | - name: Build and Test |
| 80 | run: ci/aarch64-macos-release.sh |
| 81 | x86_64-windows-debug: |
| 82 | timeout-minutes: 420 |
| 83 | runs-on: [self-hosted, Windows, x86_64] |
| 84 | steps: |
| 85 | - name: Checkout |
| 86 | uses: actions/checkout@v4 |
| 87 | with: |
| 88 | fetch-depth: 0 |
| 89 | - name: Build and Test |
| 90 | run: ci/x86_64-windows-debug.ps1 |
| 91 | x86_64-windows-release: |
| 92 | timeout-minutes: 420 |
| 93 | runs-on: [self-hosted, Windows, x86_64] |
| 94 | steps: |
| 95 | - name: Checkout |
| 96 | uses: actions/checkout@v4 |
| 97 | with: |
| 98 | fetch-depth: 0 |
| 99 | - name: Build and Test |
| 100 | run: ci/x86_64-windows-release.ps1 |