Skip to content

Commit

Permalink
travis: use gcc8
Browse files Browse the repository at this point in the history
  • Loading branch information
devernay committed Jun 9, 2018
1 parent 5679e55 commit 4bdbda3
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 5 deletions.
23 changes: 19 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,23 @@ before_install:
- sudo apt-get update -qq
# - sudo apt-get upgrade
- sudo apt-get install libavcodec-dev libavformat-dev libswscale-dev libavutil-dev libswresample-dev
- if [ ${TRAVIS_OS_NAME} = "linux" -a "$CC" = "gcc" ];
then
if [ "$BUILDDOC" = 1 ]; then
sudo apt-get install doxygen xsltproc;
fi;
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test;
sudo apt-get update;
sudo apt-get install gcc-8 g++-8;
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 90;
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-8 90;
fi

install:
- if [[ ${COVERITY_BUILD_DISABLED} == 1 ]];
then
exit 0;
fi
# OpenColorIO
- sudo apt-get install cmake libtinyxml-dev liblcms2-dev libyaml-cpp-dev libboost1.60-dev
- if [ ! -d "$HOME/ocio/lib" ]; then
Expand Down Expand Up @@ -167,10 +182,10 @@ addons:
#- g++-5
#- gcc-6
#- g++-6
- gcc-7
- g++-7
#- gcc-8
#- g++-8
#- gcc-7
#- g++-7
- gcc-8
- g++-8
#- libavcodec-dev
#- libavformat-dev
#- libswscale-dev
Expand Down
2 changes: 1 addition & 1 deletion openfx
Submodule openfx updated 1 files
+5 −5 .travis.yml

0 comments on commit 4bdbda3

Please sign in to comment.