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