Skip to content

Commit

Permalink
ci: add verbose option to manual build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-lysiuk committed Mar 9, 2024
1 parent cb357f0 commit fe8867d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/manual-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ on:
min-os-ver-arm:
description: 'macOS deployment version for ARM'
type: string
verbose:
description: 'Verbose build output'
type: boolean
hack-static-moltenvk:
description: 'Link with static MoltenVK library'
type: boolean
Expand Down Expand Up @@ -70,6 +73,10 @@ jobs:
if [ "${{ inputs.hack-quasi-glib }}" == 'true' ]; then
BUILD_CMDLINE+=' --quasi-glib'
fi
if [ "${{ inputs.verbose }}" == 'true' ]; then
BUILD_CMDLINE+=' --verbose'
fi
echo "Build command line:"
echo "> ${BUILD_CMDLINE}"
Expand Down

0 comments on commit fe8867d

Please sign in to comment.