| ... | @@ -10,30 +10,6 @@ concurrency: | ... | @@ -10,30 +10,6 @@ concurrency: |
| 10 | group: ${{ github.head_ref || github.run_id }}-${{ github.actor }} | 10 | group: ${{ github.head_ref || github.run_id }}-${{ github.actor }} |
| 11 | cancel-in-progress: true | 11 | cancel-in-progress: true |
| 12 | jobs: | 12 | jobs: |
| 13 | x86_64-linux-debug: | | |
| 14 | timeout-minutes: 420 | | |
| 15 | runs-on: [self-hosted, Linux, x86_64] | | |
| 16 | steps: | | |
| 17 | - name: Checkout | | |
| 18 | uses: actions/checkout@v3 | | |
| 19 | - name: Build and Test | | |
| 20 | run: sh ci/x86_64-linux-debug.sh | | |
| 21 | x86_64-linux-release: | | |
| 22 | timeout-minutes: 420 | | |
| 23 | runs-on: [self-hosted, Linux, x86_64] | | |
| 24 | steps: | | |
| 25 | - name: Checkout | | |
| 26 | uses: actions/checkout@v3 | | |
| 27 | - name: Build and Test | | |
| 28 | run: sh ci/x86_64-linux-release.sh | | |
| 29 | aarch64-linux-debug: | | |
| 30 | timeout-minutes: 420 | | |
| 31 | runs-on: [self-hosted, Linux, aarch64] | | |
| 32 | steps: | | |
| 33 | - name: Checkout | | |
| 34 | uses: actions/checkout@v3 | | |
| 35 | - name: Build and Test | | |
| 36 | run: sh ci/aarch64-linux-debug.sh | | |
| 37 | aarch64-linux-release: | 13 | aarch64-linux-release: |
| 38 | runs-on: [self-hosted, Linux, aarch64] | 14 | runs-on: [self-hosted, Linux, aarch64] |
| 39 | steps: | 15 | steps: |
| ... | @@ -41,57 +17,3 @@ jobs: | ... | @@ -41,57 +17,3 @@ jobs: |
| 41 | uses: actions/checkout@v3 | 17 | uses: actions/checkout@v3 |
| 42 | - name: Build and Test | 18 | - name: Build and Test |
| 43 | run: sh ci/aarch64-linux-release.sh | 19 | run: sh ci/aarch64-linux-release.sh |
| 44 | x86_64-macos-release: | | |
| 45 | runs-on: "macos-11" | | |
| 46 | env: | | |
| 47 | ARCH: "x86_64" | | |
| 48 | steps: | | |
| 49 | - name: Checkout | | |
| 50 | uses: actions/checkout@v3 | | |
| 51 | - name: Build and Test | | |
| 52 | run: ci/x86_64-macos-release.sh | | |
| 53 | aarch64-macos-debug: | | |
| 54 | runs-on: [self-hosted, macOS, aarch64] | | |
| 55 | env: | | |
| 56 | ARCH: "aarch64" | | |
| 57 | steps: | | |
| 58 | - name: Checkout | | |
| 59 | uses: actions/checkout@v3 | | |
| 60 | - name: Build and Test | | |
| 61 | run: ci/aarch64-macos-debug.sh | | |
| 62 | aarch64-macos-release: | | |
| 63 | runs-on: [self-hosted, macOS, aarch64] | | |
| 64 | env: | | |
| 65 | ARCH: "aarch64" | | |
| 66 | steps: | | |
| 67 | - name: Checkout | | |
| 68 | uses: actions/checkout@v3 | | |
| 69 | - name: Build and Test | | |
| 70 | run: ci/aarch64-macos-release.sh | | |
| 71 | x86_64-windows-debug: | | |
| 72 | runs-on: windows-latest | | |
| 73 | env: | | |
| 74 | ARCH: "x86_64" | | |
| 75 | steps: | | |
| 76 | - name: Checkout | | |
| 77 | uses: actions/checkout@v3 | | |
| 78 | - name: Build and Test | | |
| 79 | run: ci/x86_64-windows-debug.ps1 | | |
| 80 | x86_64-windows-release: | | |
| 81 | runs-on: windows-latest | | |
| 82 | env: | | |
| 83 | ARCH: "x86_64" | | |
| 84 | steps: | | |
| 85 | - name: Checkout | | |
| 86 | uses: actions/checkout@v3 | | |
| 87 | - name: Build and Test | | |
| 88 | run: ci/x86_64-windows-release.ps1 | | |
| 89 | aarch64-windows: | | |
| 90 | runs-on: [self-hosted, Windows, aarch64] | | |
| 91 | env: | | |
| 92 | ARCH: "aarch64" | | |
| 93 | steps: | | |
| 94 | - name: Checkout | | |
| 95 | uses: actions/checkout@v3 | | |
| 96 | - name: Build and Test | | |
| 97 | run: ci/aarch64-windows.ps1 | | |