Skip to content

Commit

Permalink
Keep gcc8 on Travis for now
Browse files Browse the repository at this point in the history
  • Loading branch information
RainerKuemmerle committed Apr 10, 2020
1 parent dd2c961 commit fdf6965
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ before_script:
- mkdir build
- cd build
- if [[ "$CC" == "gcc" && "$TRAVIS_OS_NAME" == "linux" ]]; then
export CC=gcc-9 ;
export CXX=g++-9 ;
export CC=gcc-8 ;
export CXX=g++-8 ;
fi
- cmake --version
- cmake -DBUILD_UNITTESTS=ON ..
Expand Down
2 changes: 1 addition & 1 deletion script/install-deps-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ sudo apt-get install -qq qtdeclarative5-dev qt5-qmake libqglviewer-dev-qt5 libsu
# install new gcc
if [ "$CC" = "gcc" ]; then
apt-cache search -n "^gcc-[0-9]+$"
sudo apt-get install -qq gcc-9 g++-9
sudo apt-get install -qq gcc-8 g++-8
fi

# download eigen3 and unpack it
Expand Down

0 comments on commit fdf6965

Please sign in to comment.