Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix up the .travis.yml file #283

Closed
wants to merge 5 commits into from
Closed
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

@@ -1,15 +1,30 @@
language: rust
sudo: 9000
dist: trusty
rust:
- nightly
os:
- linux
- osx

env:
- FEATURES=""
- FEATURES="--features debugmozjs"

matrix:
include:
- os: linux
env:
- FEATURES="" CC="gcc-4.8" CPP="gcc-4.8 -E" CXX="g++-4.8"
- os: linux
env:
- FEATURES="--features debugmozjs" CC="gcc-4.8" CPP="gcc-4.8 -E" CXX="g++-4.8"
- os: osx
env:
- FEATURES=""
- os: osx
env:
- FEATURES="--features debugmozjs"

addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.8
- g++-4.8

before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install ccache; fi
@@ -20,9 +35,6 @@ script:
- CCACHE=$(which ccache) cargo test --verbose $FEATURES
- ccache -s

branches:
except:
- master
notifications:
webhooks: http://build.servo.org:54856/travis

ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.