mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 06:31:37 +00:00
ci: add verbose option to manual build workflow
This commit is contained in:
parent
cb357f04bb
commit
fe8867dba3
1 changed files with 7 additions and 0 deletions
7
.github/workflows/manual-build.yml
vendored
7
.github/workflows/manual-build.yml
vendored
|
@ -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
|
||||
|
@ -71,6 +74,10 @@ jobs:
|
|||
BUILD_CMDLINE+=' --quasi-glib'
|
||||
fi
|
||||
|
||||
if [ "${{ inputs.verbose }}" == 'true' ]; then
|
||||
BUILD_CMDLINE+=' --verbose'
|
||||
fi
|
||||
|
||||
echo "Build command line:"
|
||||
echo "> ${BUILD_CMDLINE}"
|
||||
|
||||
|
|
Loading…
Reference in a new issue