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:
Родитель
f207591fb6
Коммит
66f4821816
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче