Skip to content

Commit

Permalink
ci: windows: prefix path
Browse files Browse the repository at this point in the history
  • Loading branch information
scivision committed May 10, 2024
1 parent 600bbd7 commit c9a46dc
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ on:
env:
CMAKE_BUILD_PARALLEL_LEVEL: 4
CTEST_PARALLEL_LEVEL: 0
CMAKE_INSTALL_PREFIX: libs
CMAKE_PREFIX_PATH: libs


jobs:
Expand All @@ -36,6 +34,11 @@ jobs:
- name: Put MSYS2_MinGW64 on PATH
run: echo "${{ runner.temp }}/msys64/mingw64/bin/" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append

- name: prefix path
run: |
echo "CMAKE_INSTALL_PREFIX=$HOME/libs" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
echo "CMAKE_PREFIX_PATH=$HOME/libs" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
- uses: actions/checkout@v4

# undefined reference to `ncpsharedlibfree'
Expand Down

0 comments on commit c9a46dc

Please sign in to comment.