We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7cd5bad + edc9c29 commit 76e2f30Copy full SHA for 76e2f30
.github/workflows/build.yml
@@ -261,7 +261,11 @@ jobs:
261
vcpkgTriplet: x64-windows
262
- name: "create build directory"
263
shell: powershell
264
- run: mkdir -p build
+ run: |
265
+ If (!(Test-Path build))
266
+ {
267
+ New-Item -ItemType Directory -Force -Path build
268
+ }
269
- name: "Generate build files"
270
run: cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE="${{ runner.workspace }}/vcpkg/scripts/buildsystems/vcpkg.cmake" -DVCPKG_TARGET_TRIPLET=x64-windows -DYAML_BUILD_SHARED_LIBS=OFF -DCONTOUR_EXAMPLES=OFF -DLIBTERMINAL_TESTING=ON -DLIBUNICODE_TESTING=ON -DYAML_CPP_BUILD_CONTRIB=OFF -DYAML_CPP_BUILD_TESTS=OFF -DYAML_CPP_BUILD_TOOLS=OFF -DYAML_CPP_INSTALL=OFF -B build .
271
- name: "Build"
0 commit comments