From 3228e05401d3151472e492126641233b5d5c1048 Mon Sep 17 00:00:00 2001 From: scivision Date: Thu, 9 May 2024 17:40:11 -0400 Subject: [PATCH] ci:windows: "$HOME" needed --- .github/workflows/ci_windows.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_windows.yml b/.github/workflows/ci_windows.yml index 10b43d9..54926cc 100644 --- a/.github/workflows/ci_windows.yml +++ b/.github/workflows/ci_windows.yml @@ -4,8 +4,6 @@ env: CTEST_NO_TESTS_ACTION: error CTEST_PARALLEL_LEVEL: 0 CMAKE_BUILD_PARALLEL_LEVEL: 4 - CMAKE_INSTALL_PREFIX: ~/libs - CMAKE_PREFIX_PATH: ~/libs on: push: @@ -27,6 +25,11 @@ jobs: timeout-minutes: 30 runs-on: windows-latest + # Windows needs these defined within the job. $HOME doesn't work nor does ~. + env: + CMAKE_INSTALL_PREFIX: libs + CMAKE_PREFIX_PATH: libs + steps: - uses: msys2/setup-msys2@v2 with: