Make the build pipeline that creates a directory more resilient if the build directory already exists. (#1223)

* Add contents from a build directory.

* Use the -p option to avoid failing if the directory already exists.

* Remove the build directory from check-in.

* Revert change to .gitignore.

* Update .gitignore to exclude the VS default out directory.

* Move the out directory gitignore with the rest of the VS artifacts.
This commit is contained in:
Ahson Khan 2020-09-04 18:06:55 -07:00 коммит произвёл GitHub
Родитель f207591fb6
Коммит 66f4821816
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 4 добавлений и 3 удалений

5
.gitignore поставляемый
Просмотреть файл

@ -23,6 +23,7 @@ bld/
[Bb]in/
[Oo]bj/
[Ll]og/
out/
# Visual Studio 2015/2017 cache/options directory
.vs/
@ -298,10 +299,10 @@ ASALocalRun/
.mfractor/
# CMake
build/
/build/
/cmake-build-debug
#Doxygen
# Doxygen
/[Dd]ocs/
DoxygenWarningLog.txt

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

@ -3,7 +3,7 @@ parameters:
BuildType: Debug
steps:
- script: mkdir build
- script: mkdir -p build
displayName: create working directory
- script: cmake --version