always run restore when building with arcade (#858)

This commit is contained in:
Brett V. Forsgren 2020-07-13 15:25:52 -07:00 коммит произвёл GitHub
Родитель 29fa4e6dab
Коммит 6ebb9803e7
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 3 добавлений и 3 удалений

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

@ -228,7 +228,7 @@ stages:
displayName: Run up-to-date build check
inputs:
filePath: eng\tests\UpToDate.ps1
arguments: -configuration $(_BuildConfig) -restore -ci
arguments: -configuration $(_BuildConfig) -ci
# - template: /eng/common/templates/jobs/jobs.yml
# parameters:

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

@ -1,2 +1,2 @@
@echo off
powershell -noprofile -executionPolicy RemoteSigned -file "%~dp0eng\build.ps1" -build -binaryLog %*
powershell -noprofile -executionPolicy RemoteSigned -file "%~dp0eng\build.ps1" -build -restore -binaryLog %*

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

@ -13,4 +13,4 @@ while [[ -h $source ]]; do
done
scriptroot="$( cd -P "$( dirname "$source" )" && pwd)"
. "$scriptroot/eng/build.sh" --build --binaryLog "$@"
. "$scriptroot/eng/build.sh" --build --restore --binaryLog "$@"