[Mod] prevent travis vm from terminating: change -qq into -y

This commit is contained in:
nanoric 2019-03-20 21:49:24 -04:00
parent af7b433370
commit 9503143398

View File

@ -33,10 +33,10 @@ matrix:
before_install:
# C++17
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
- sudo apt-get update -y
install:
# C++17
- sudo apt-get install -qq gcc-8 g++-8
- sudo apt-get install -y gcc-8 g++-8
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-8 90
- sudo update-alternatives --install /usr/bin/c++ c++ /usr/bin/g++-8 90
- sudo update-alternatives --install /usr/bin/gcc cc /usr/bin/gcc-8 90
@ -50,10 +50,10 @@ matrix:
before_install:
# C++17
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
- sudo apt-get update -y
install:
# C++17
- sudo apt-get install -qq gcc-7 g++-7
- sudo apt-get install -y gcc-7 g++-7
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-7 90
- sudo update-alternatives --install /usr/bin/c++ c++ /usr/bin/g++-7 90
- sudo update-alternatives --install /usr/bin/gcc cc /usr/bin/gcc-7 90