authorgravatar for kappaloris@gmail.comLoris Cro <kappaloris@gmail.com> 2022-11-25 20:02:51+01:00
committergravatar for kappaloris@gmail.comLoris Cro <kappaloris@gmail.com> 2022-11-25 20:02:51+01:00
log764651c8405643a539a8a1aeb654803bf978a9b2
tree90e9a65307bbbe8cf1fc45351f26cd2a6ed32f45
parentf1ec438069f2a7c74a8b64b401f86bb97cd5540c

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:
99 required: true
1010 default: 'HEAD'
1111 type: string
12 x86_64-linux-debug:
12 x86_64_linux_debug:
1313 required: false
1414 default: true
1515 type: boolean
16 x86_64-linux-release:
16 x86_64_linux_release:
1717 required: false
1818 default: true
1919 type: boolean
20 x86_64-macos:
20 x86_64_macos:
2121 required: false
2222 default: true
2323 type: boolean
24 x86_64-windows:
24 x86_64_windows:
2525 required: false
2626 default: true
2727 type: boolean
28 aarch64-linux:
28 aarch64_linux:
2929 required: false
3030 default: true
3131 type: boolean
32 aarch64-macos:
32 aarch64_macos:
3333 required: false
3434 default: true
3535 type: boolean
......@@ -43,7 +43,7 @@ concurrency:
4343 cancel-in-progress: true
4444jobs:
4545 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 }}
4747 runs-on: [self-hosted, Linux, x86_64]
4848 steps:
4949 - name: Checkout
......@@ -56,7 +56,7 @@ jobs:
5656 - name: Print Version
5757 run: echo "$(build-debug/stage3-debug/bin/zig version)"
5858 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 }}
6060 runs-on: [self-hosted, Linux, x86_64]
6161 steps:
6262 - name: Checkout
......@@ -67,7 +67,7 @@ jobs:
6767 - name: Build and Test
6868 run: sh ./ci/linux/build-x86_64-release.sh
6969 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 }}
7171 runs-on: "macos-11"
7272 env:
7373 ARCH: "x86_64"
......@@ -80,7 +80,7 @@ jobs:
8080 - name: Build and Test
8181 run: ./ci/macos/build-x86_64.sh
8282 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 }}
8484 runs-on: windows-latest
8585 env:
8686 ARCH: "x86_64"
......@@ -93,7 +93,7 @@ jobs:
9393 - name: Build and Test
9494 run: ./ci/windows/build.ps1
9595 aarch64-linux:
96 if: ${{ github.event_name != 'workflow_dispatch' || inputs["aarch64-linux"] }}
96 if: ${{ github.event_name != 'workflow_dispatch' || inputs.aarch64_linux }}
9797 runs-on: [self-hosted, Linux, aarch64]
9898 steps:
9999 - name: Checkout
......@@ -104,7 +104,7 @@ jobs:
104104 - name: Build and Test
105105 run: sh ./ci/linux/build-aarch64.sh
106106 aarch64-macos:
107 if: ${{ github.event_name != 'workflow_dispatch' || inputs["aarch64-macos"] }}
107 if: ${{ github.event_name != 'workflow_dispatch' || inputs.aarch64_macos }}
108108 runs-on: [self-hosted, macOS, aarch64]
109109 env:
110110 ARCH: "aarch64"