* [devops] Enable verbose build.

* Allow to set the build in verbose when the pipeline is in debug mode.

Co-authored-by: Manuel de la Pena <mandel@microsoft.com>
This commit is contained in:
Rolf Bjarne Kvinge 2022-07-11 20:03:47 +02:00 коммит произвёл GitHub
Родитель 1aed252ebc
Коммит a6c5b914ab
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 9 добавлений и 3 удалений

Просмотреть файл

@ -246,8 +246,14 @@ steps:
set -e
echo "##vso[task.setvariable variable=TESTS_BOT;isOutput=true]$AGENT_NAME"
time make -C $(Build.SourcesDirectory)/xamarin-macios/ reset
time make -C $(Build.SourcesDirectory)/xamarin-macios/ all -j8
time make -C $(Build.SourcesDirectory)/xamarin-macios/ install -j8
MAKE_FLAGS=""
if [[ "$SYSTEM_DEBUG" == "true" ]]; then
MAKE_FLAGS="V=1 -w"
fi
time make -C $(Build.SourcesDirectory)/xamarin-macios/ all -j8 $MAKE_FLAGS
time make -C $(Build.SourcesDirectory)/xamarin-macios/ install -j8 $MAKE_FLAGS
name: build
displayName: 'Build'
timeoutInMinutes: 300