diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2019-10-15 12:01:03 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-15 12:01:03 -0300 |
commit | 40ec24dcd12839b03255c2ef7c5a1211ca275c16 (patch) | |
tree | 6685b9f92d832cd4ce2d5dbcd77834d825355ba1 | |
parent | f2f2ae4f6aabe8efd94f0b619b1d73ac5abe78be (diff) | |
download | PSP.git-40ec24dcd12839b03255c2ef7c5a1211ca275c16.tar.gz PSP.git-40ec24dcd12839b03255c2ef7c5a1211ca275c16.tar.xz PSP.git-40ec24dcd12839b03255c2ef7c5a1211ca275c16.zip |
Update .travis.yml
-rw-r--r-- | .travis.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index 70a1280..58d9ea4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,14 +13,14 @@ packages: - cmake before_install: - - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test ; fi - - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get update ; fi - - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y libwxgtk3.0-dev ; fi +sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test +sudo apt-get update +sudo apt-get install -y libwxgtk3.0-dev install: # C++17 - - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -qq g++-6 ; fi - - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-6 90 ; fi +sudo apt-get install -qq g++-6 +sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-6 90 before_script: - mkdir build |