Skip to content

Commit

Permalink
fix: Eigen3 download URL in Dockerfile and AppVeyor config
Browse files Browse the repository at this point in the history
  • Loading branch information
schuhschuh committed Sep 19, 2020
1 parent 5ff9b23 commit c21910e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ os: Visual Studio 2017
environment:
LIBPNG_VERSION: 1.6.18.44
ZLIB_VERSION: 1.2.8.4
EIGEN_VERSION: 3.3.4
EIGEN_VERSION: 3.3.7
TBB_VERSION: 2017_U7
TBB_PACKAGE_ID: tbb2017_20170604oss
matrix:
Expand Down Expand Up @@ -53,9 +53,9 @@ install:
- ps: |
Write-Output "Installing Eigen $($env:EIGEN_VERSION)"
& curl -o eigen.zip http://bitbucket.org/eigen/eigen/get/$($env:EIGEN_VERSION).zip
& curl -o eigen.zip https://gitlab.com/libeigen/eigen/-/archive/$($env:EIGEN_VERSION)/eigen-$($env:EIGEN_VERSION).zip
& 7z x eigen.zip -y | Out-Null
Rename-Item -path eigen-eigen-5a0156e40feb -newName eigen
Rename-Item -path eigen-$($env:EIGEN_VERSION) -newName eigen
- ps: |
Write-Output "Installing TBB $($env:TBB_VERSION)"
Expand Down
2 changes: 1 addition & 1 deletion Docker/Ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ RUN NUM_CPUS=${THREADS:-`cat /proc/cpuinfo | grep processor | wc -l`} \
EIGEN_SOURCE_DIR=/usr/src/eigen-${EIGEN_VERSION} \
&& mkdir ${EIGEN_SOURCE_DIR} /usr/include/eigen3 \
&& cd ${EIGEN_SOURCE_DIR} \
&& wget -O archive.tar.bz2 http://bitbucket.org/eigen/eigen/get/${EIGEN_VERSION}.tar.bz2 \
&& wget -O archive.tar.bz2 https://gitlab.com/libeigen/eigen/-/archive/${EIGEN_VERSION}/eigen-${EIGEN_VERSION}.tar.bz2 \
&& tar vxjf archive.tar.bz2 --strip 1 \
&& mv signature_of_eigen3_matrix_library Eigen /usr/include/eigen3/ \
&& mv cmake/FindEigen3.cmake /usr/share/cmake-3.10/Modules/ \
Expand Down

0 comments on commit c21910e

Please sign in to comment.