Skip to content

Commit

Permalink
Install eigen
Browse files Browse the repository at this point in the history
  • Loading branch information
christophfroehlich committed Nov 27, 2024
1 parent bb0f2f9 commit 3a00b61
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/reusable-ros-tooling-win-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,19 @@ jobs:
with:
python-version: '3.8'

# install more dependencies here, we can't use vcpkg because it overrides the python version
# and colcon fails later
- name: Install Eigen
run: |
Invoke-WebRequest -Uri https://gitlab.com/libeigen/eigen/-/archive/3.4.0/eigen-3.4.0.zip -OutFile eigen-3.4.0.zip
Expand-Archive -Path eigen-3.4.0.zip -DestinationPath C:\Eigen
Move-Item -Path C:\Eigen\eigen-3.4.0\* -Destination C:\Eigen
Remove-Item -Path C:\Eigen\eigen-3.4.0 -Recurse
cd C:\Eigen
ls
cmake -B build -DCMAKE_INSTALL_PREFIX="C:\EigenInstall"
cmake --build build --target install
- name: Install fmt
run: |
git clone https://github.com/fmtlib/fmt.git
Expand Down

0 comments on commit 3a00b61

Please sign in to comment.