ci: add verbose option to manual build workflow

This commit is contained in:
alexey.lysiuk 2024-03-09 09:54:28 +02:00
parent cb357f04bb
commit fe8867dba3
1 changed files with 7 additions and 0 deletions

View File

@ -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
@ -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}"