authorgravatar for kappaloris@gmail.comLoris Cro <kappaloris@gmail.com> 2022-11-25 20:02:51+01:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-01-09 14:42:01-07:00
logb97fb48a6f59bf051c319f5abf326394ae7f8a30
tree27625e526de20c5a577ef49a9b726b7438266985
parent7a70b22cfb5ecdc37ad1096d9097cef5028d7861

ci: fix syntax error in workflow file


1 files changed, 12 insertions(+), 12 deletions(-)

.github/workflows/ci.yaml+12-12
...@@ -9,27 +9,27 @@ on:...@@ -9,27 +9,27 @@ on:
9 required: true9 required: true
10 default: 'HEAD'10 default: 'HEAD'
11 type: string11 type: string
12 x86_64-linux-debug:12 x86_64_linux_debug:
13 required: false13 required: false
14 default: true14 default: true
15 type: boolean15 type: boolean
16 x86_64-linux-release:16 x86_64_linux_release:
17 required: false17 required: false
18 default: true18 default: true
19 type: boolean19 type: boolean
20 x86_64-macos:20 x86_64_macos:
21 required: false21 required: false
22 default: true22 default: true
23 type: boolean23 type: boolean
24 x86_64-windows:24 x86_64_windows:
25 required: false25 required: false
26 default: true26 default: true
27 type: boolean27 type: boolean
28 aarch64-linux:28 aarch64_linux:
29 required: false29 required: false
30 default: true30 default: true
31 type: boolean31 type: boolean
32 aarch64-macos:32 aarch64_macos:
33 required: false33 required: false
34 default: true34 default: true
35 type: boolean35 type: boolean
...@@ -43,7 +43,7 @@ concurrency:...@@ -43,7 +43,7 @@ concurrency:
43 cancel-in-progress: true43 cancel-in-progress: true
44jobs:44jobs:
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: Checkout49 - name: Checkout
...@@ -56,7 +56,7 @@ jobs:...@@ -56,7 +56,7 @@ jobs:
56 - name: Print Version56 - 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: Checkout62 - name: Checkout
...@@ -67,7 +67,7 @@ jobs:...@@ -67,7 +67,7 @@ jobs:
67 - name: Build and Test67 - name: Build and Test
68 run: sh ./ci/linux/build-x86_64-release.sh68 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 Test80 - name: Build and Test
81 run: ./ci/macos/build-x86_64.sh81 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-latest84 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 Test93 - name: Build and Test
94 run: ./ci/windows/build.ps194 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: Checkout99 - name: Checkout
...@@ -104,7 +104,7 @@ jobs:...@@ -104,7 +104,7 @@ jobs:
104 - name: Build and Test104 - name: Build and Test
105 run: sh ./ci/linux/build-aarch64.sh105 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"