Skip to content

Commit

Permalink
Travis: Fix broken Eigen url. Update Eigen to 3.3.7.
Browse files Browse the repository at this point in the history
  • Loading branch information
phcerdan committed Aug 28, 2020
1 parent 8e35dc1 commit 75a9f72
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis/install_eigen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ if [ "$TRAVIS_OS_NAME" == linux ];
then
cd "$HOME"

wget http://bitbucket.org/eigen/eigen/get/3.2.10.tar.bz2
bunzip2 3.2.10.tar.bz2
tar xf 3.2.10.tar
wget https://gitlab.com/libeigen/eigen/-/archive/3.3.7/eigen-3.3.7.tar.bz2
bunzip2 eigen-3.3.7.tar.bz2
tar xf eigen-3.3.7.tar

cd eigen-eigen-b9cd8366d4e8
cd Eigen
mkdir build ; cd build

cmake .. -DCMAKE_INSTALL_PREFIX="$DEPS_DIR"
Expand Down
4 changes: 4 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@

## Changes

- *Configuration/General*
- Travis: Fix broken Eigen url. Update Eigen in travis to 3.3.7.
(Pablo Hernandez, [#X](https://github.com/DGtal-team/DGtal/pull/X))

- *General*
- DGtal can be compiled and used as a project (git) submodule (David
Coeurjolly [#1444](https://github.com/DGtal-team/DGtal/pull/1444))
Expand Down

0 comments on commit 75a9f72

Please sign in to comment.