diff options
| author | Loris Cro <kappaloris@gmail.com> | 2022-11-25 20:02:51 +0100 |
|---|---|---|
| committer | Loris Cro <kappaloris@gmail.com> | 2022-11-25 20:02:51 +0100 |
| commit | 764651c8405643a539a8a1aeb654803bf978a9b2 (patch) | |
| tree | 90e9a65307bbbe8cf1fc45351f26cd2a6ed32f45 /.github | |
| parent | f1ec438069f2a7c74a8b64b401f86bb97cd5540c (diff) | |
| download | zig-764651c8405643a539a8a1aeb654803bf978a9b2.tar.gz zig-764651c8405643a539a8a1aeb654803bf978a9b2.zip | |
ci: fix syntax error in workflow file
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yaml | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index cdaab1ca64..a14b705be5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -9,27 +9,27 @@ on: required: true default: 'HEAD' type: string - x86_64-linux-debug: + x86_64_linux_debug: required: false default: true type: boolean - x86_64-linux-release: + x86_64_linux_release: required: false default: true type: boolean - x86_64-macos: + x86_64_macos: required: false default: true type: boolean - x86_64-windows: + x86_64_windows: required: false default: true type: boolean - aarch64-linux: + aarch64_linux: required: false default: true type: boolean - aarch64-macos: + aarch64_macos: required: false default: true type: boolean @@ -43,7 +43,7 @@ concurrency: cancel-in-progress: true jobs: x86_64-linux-debug: - if: ${{ github.event_name != 'workflow_dispatch' || inputs["x86_64-linux-debug"] }} + if: ${{ github.event_name != 'workflow_dispatch' || inputs.x86_64_linux_debug }} runs-on: [self-hosted, Linux, x86_64] steps: - name: Checkout @@ -56,7 +56,7 @@ jobs: - name: Print Version run: echo "$(build-debug/stage3-debug/bin/zig version)" x86_64-linux-release: - if: ${{ github.event_name != 'workflow_dispatch' || inputs["x86_64-linux-release"] }} + if: ${{ github.event_name != 'workflow_dispatch' || inputs.x86_64_linux_release }} runs-on: [self-hosted, Linux, x86_64] steps: - name: Checkout @@ -67,7 +67,7 @@ jobs: - name: Build and Test run: sh ./ci/linux/build-x86_64-release.sh x86_64-macos: - if: ${{ github.event_name != 'workflow_dispatch' || inputs["x86_64-macos"] }} + if: ${{ github.event_name != 'workflow_dispatch' || inputs.x86_64_macos }} runs-on: "macos-11" env: ARCH: "x86_64" @@ -80,7 +80,7 @@ jobs: - name: Build and Test run: ./ci/macos/build-x86_64.sh x86_64-windows: - if: ${{ github.event_name != 'workflow_dispatch' || inputs["x86_64-windows"] }} + if: ${{ github.event_name != 'workflow_dispatch' || inputs.x86_64_windows }} runs-on: windows-latest env: ARCH: "x86_64" @@ -93,7 +93,7 @@ jobs: - name: Build and Test run: ./ci/windows/build.ps1 aarch64-linux: - if: ${{ github.event_name != 'workflow_dispatch' || inputs["aarch64-linux"] }} + if: ${{ github.event_name != 'workflow_dispatch' || inputs.aarch64_linux }} runs-on: [self-hosted, Linux, aarch64] steps: - name: Checkout @@ -104,7 +104,7 @@ jobs: - name: Build and Test run: sh ./ci/linux/build-aarch64.sh aarch64-macos: - if: ${{ github.event_name != 'workflow_dispatch' || inputs["aarch64-macos"] }} + if: ${{ github.event_name != 'workflow_dispatch' || inputs.aarch64_macos }} runs-on: [self-hosted, macOS, aarch64] env: ARCH: "aarch64" |
