We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12514fc commit c720427Copy full SHA for c720427
1 file changed
.travis.yml
@@ -7,11 +7,14 @@ before_install:
7
- source ./.nvm/nvm.sh
8
- nvm install $NODE_VERSION
9
- nvm use $NODE_VERSION
10
- - "sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test"
11
- - "sudo apt-get -qq update"
12
- - "sudo apt-get -qq install g++-4.8"
+ - if [ $TRAVIS_OS_NAME == "linux" ]; then
+ sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test;
+ sudo apt-get -qq update;
13
+ sudo apt-get -qq install g++-4.8;
14
+ fi
15
- "export CXX='g++-4.8'"
16
- "export JOBS=4"
17
+ - npm install
18
# This is a random private key used purely for testing.
19
before_script:
20
- echo -e "Host *\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
0 commit comments