| ... | ... | @@ -9,27 +9,27 @@ on: |
| 9 | 9 | required: true |
| 10 | 10 | default: 'HEAD' |
| 11 | 11 | type: string |
| 12 | | x86_64-linux-debug: |
| 12 | x86_64_linux_debug: |
| 13 | 13 | required: false |
| 14 | 14 | default: true |
| 15 | 15 | type: boolean |
| 16 | | x86_64-linux-release: |
| 16 | x86_64_linux_release: |
| 17 | 17 | required: false |
| 18 | 18 | default: true |
| 19 | 19 | type: boolean |
| 20 | | x86_64-macos: |
| 20 | x86_64_macos: |
| 21 | 21 | required: false |
| 22 | 22 | default: true |
| 23 | 23 | type: boolean |
| 24 | | x86_64-windows: |
| 24 | x86_64_windows: |
| 25 | 25 | required: false |
| 26 | 26 | default: true |
| 27 | 27 | type: boolean |
| 28 | | aarch64-linux: |
| 28 | aarch64_linux: |
| 29 | 29 | required: false |
| 30 | 30 | default: true |
| 31 | 31 | type: boolean |
| 32 | | aarch64-macos: |
| 32 | aarch64_macos: |
| 33 | 33 | required: false |
| 34 | 34 | default: true |
| 35 | 35 | type: boolean |
| ... | ... | @@ -43,7 +43,7 @@ concurrency: |
| 43 | 43 | cancel-in-progress: true |
| 44 | 44 | jobs: |
| 45 | 45 | x86_64-linux-debug: |
| 46 | | if: ${{ github.event_name != 'workflow_dispatch' || inputs["x86_64-linux-debug"] }} |
| 46 | if: ${{ github.event_name != 'workflow_dispatch' || inputs.x86_64_linux_debug }} |
| 47 | 47 | runs-on: [self-hosted, Linux, x86_64] |
| 48 | 48 | steps: |
| 49 | 49 | - name: Checkout |
| ... | ... | @@ -56,7 +56,7 @@ jobs: |
| 56 | 56 | - name: Print Version |
| 57 | 57 | run: echo "$(build-debug/stage3-debug/bin/zig version)" |
| 58 | 58 | x86_64-linux-release: |
| 59 | | if: ${{ github.event_name != 'workflow_dispatch' || inputs["x86_64-linux-release"] }} |
| 59 | if: ${{ github.event_name != 'workflow_dispatch' || inputs.x86_64_linux_release }} |
| 60 | 60 | runs-on: [self-hosted, Linux, x86_64] |
| 61 | 61 | steps: |
| 62 | 62 | - name: Checkout |
| ... | ... | @@ -67,7 +67,7 @@ jobs: |
| 67 | 67 | - name: Build and Test |
| 68 | 68 | run: sh ./ci/linux/build-x86_64-release.sh |
| 69 | 69 | x86_64-macos: |
| 70 | | if: ${{ github.event_name != 'workflow_dispatch' || inputs["x86_64-macos"] }} |
| 70 | if: ${{ github.event_name != 'workflow_dispatch' || inputs.x86_64_macos }} |
| 71 | 71 | runs-on: "macos-11" |
| 72 | 72 | env: |
| 73 | 73 | ARCH: "x86_64" |
| ... | ... | @@ -80,7 +80,7 @@ jobs: |
| 80 | 80 | - name: Build and Test |
| 81 | 81 | run: ./ci/macos/build-x86_64.sh |
| 82 | 82 | x86_64-windows: |
| 83 | | if: ${{ github.event_name != 'workflow_dispatch' || inputs["x86_64-windows"] }} |
| 83 | if: ${{ github.event_name != 'workflow_dispatch' || inputs.x86_64_windows }} |
| 84 | 84 | runs-on: windows-latest |
| 85 | 85 | env: |
| 86 | 86 | ARCH: "x86_64" |
| ... | ... | @@ -93,7 +93,7 @@ jobs: |
| 93 | 93 | - name: Build and Test |
| 94 | 94 | run: ./ci/windows/build.ps1 |
| 95 | 95 | aarch64-linux: |
| 96 | | if: ${{ github.event_name != 'workflow_dispatch' || inputs["aarch64-linux"] }} |
| 96 | if: ${{ github.event_name != 'workflow_dispatch' || inputs.aarch64_linux }} |
| 97 | 97 | runs-on: [self-hosted, Linux, aarch64] |
| 98 | 98 | steps: |
| 99 | 99 | - name: Checkout |
| ... | ... | @@ -104,7 +104,7 @@ jobs: |
| 104 | 104 | - name: Build and Test |
| 105 | 105 | run: sh ./ci/linux/build-aarch64.sh |
| 106 | 106 | aarch64-macos: |
| 107 | | if: ${{ github.event_name != 'workflow_dispatch' || inputs["aarch64-macos"] }} |
| 107 | if: ${{ github.event_name != 'workflow_dispatch' || inputs.aarch64_macos }} |
| 108 | 108 | runs-on: [self-hosted, macOS, aarch64] |
| 109 | 109 | env: |
| 110 | 110 | ARCH: "aarch64" |