We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c8ddd4 commit 880e553Copy full SHA for 880e553
1 file changed
.github/workflows/build.yml
@@ -735,8 +735,14 @@ jobs:
735
|| ''
736
}}
737
${{ !fromJSON(needs.build-context.outputs.run-windows-tests) && 'build-windows,' || '' }}
738
- ${{ !fromJSON(needs.build-context.outputs.run-ci-fuzz) && 'cifuzz,' || '' }}
739
- ${{ !fromJSON(needs.build-context.outputs.run-ci-fuzz-stdlib) && 'cifuzz,' || '' }}
+ ${{
+ (
740
+ !fromJSON(needs.build-context.outputs.run-ci-fuzz)
741
+ && !fromJSON(needs.build-context.outputs.run-ci-fuzz-stdlib)
742
+ )
743
+ && 'cifuzz,' ||
744
+ ''
745
+ }}
746
${{ !fromJSON(needs.build-context.outputs.run-macos) && 'build-macos,' || '' }}
747
${{
748
!fromJSON(needs.build-context.outputs.run-ubuntu)
0 commit comments