From cb5d46234eaa05e359ecd67422036cf3b0ed0904 Mon Sep 17 00:00:00 2001 From: itsmattkc <34096995+itsmattkc@users.noreply.github.com> Date: Thu, 29 Jun 2023 14:00:10 -0700 Subject: [PATCH] ci: i guess older cmake doesn't support this --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e742eef7..3e2b0d64 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -56,8 +56,10 @@ jobs: shell: cmd run: | call .\msvc420\bin\VCVARS32.BAT x86 - cmake -S . -B build -DCMAKE_BUILD_TYPE=RelWithDebInfo -G "NMake Makefiles" - cmake --build build + mkdir build + cd build + cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo -G "NMake Makefiles" + cmake --build . - name: Restore cached original binaries id: cache-original-binaries