Skip to content

Commit

Permalink
ci: fix on win32
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Oct 27, 2024
1 parent 7a4b3c7 commit 06c1cb6
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,16 @@ jobs:
- name: Dependencies
if: matrix.os == 'macos-latest'
run: |
brew install boost
brew link boost
brew install boost eigen
brew link boost eigen
- name: Dependencies
if: matrix.os == 'windows-latest'
run: |
choco install eigen -y
choco install boost-msvc-14.3 -y
boost_path = (Get-ChildItem -Path 'C:\local\' -Filter 'boost_*').FullName
echo $boost_path >> $env:GITHUB_PATH
- name: Build Project
uses: threeal/cmake-action@v2.0.0
Expand Down

0 comments on commit 06c1cb6

Please sign in to comment.