From ef4d37738fca6833cb25462418e95c1aa7d66391 Mon Sep 17 00:00:00 2001 From: Lars Melchior Date: Wed, 20 Jan 2021 18:12:18 +0100 Subject: [PATCH] create modules directory if it doesn't exist on windows --- .github/workflows/windows.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index c5eb662..d3fe746 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -25,7 +25,9 @@ jobs: key: cpm-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }} - name: configure - run: cmake -Stest -Bbuild -DCPM_SOURCE_CACHE=$(pwd)/cpm_modules + run: | + mkdir -p cpm_modules + cmake -Stest -Bbuild -DCPM_SOURCE_CACHE=$(pwd)/cpm_modules - name: build run: cmake --build build --config Debug -j4