Skip to content

Commit

Permalink
Don't use env lists in .travis.yml except for secure
Browse files Browse the repository at this point in the history
This follows the recommendation of Travis CI, and is necessary for
allow_failures to work (whether by design or bug is currently an open
issue there).
  • Loading branch information
gsnedders authored and jgraham committed Mar 21, 2017
1 parent b16a0c3 commit 8196377
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .travis.yml
Expand Up @@ -20,12 +20,10 @@ matrix:
include:
- os: linux
python: "2.7"
env:
- SCRIPT=ci_lint.sh
env: SCRIPT=ci_lint.sh
- os: linux
python: "2.7"
env:
- SCRIPT=ci_built_diff.sh
env: SCRIPT=ci_built_diff.sh
- os: linux
python: "2.7"
addons:
Expand All @@ -34,8 +32,7 @@ matrix:
- libnss3-tools
env:
- secure: "YTSXPwI0DyCA1GhYrLT9KMEV6b7QQKuEeaQgeFDP38OTzJ1+cIj3CC4SRNqbnJ/6SJwPGcdqSxLuV8m4e5HFFnyCcQnJe6h8EMsTehZ7W3j/fP9UYrJqYqvGpe3Vj3xblO5pwBYmq7sg3jAmmuCgAgOW6VGf7cRMucrsmFeo7VM="
- SCRIPT=ci_stability.sh
- PRODUCT=firefox:nightly
- SCRIPT=ci_stability.sh PRODUCT=firefox:nightly
- os: linux
sudo: required
python: "2.7"
Expand All @@ -46,8 +43,7 @@ matrix:
- fonts-liberation
env:
- secure: "YTSXPwI0DyCA1GhYrLT9KMEV6b7QQKuEeaQgeFDP38OTzJ1+cIj3CC4SRNqbnJ/6SJwPGcdqSxLuV8m4e5HFFnyCcQnJe6h8EMsTehZ7W3j/fP9UYrJqYqvGpe3Vj3xblO5pwBYmq7sg3jAmmuCgAgOW6VGf7cRMucrsmFeo7VM="
- SCRIPT=ci_stability.sh
- PRODUCT=chrome:unstable
- SCRIPT=ci_stability.sh PRODUCT=chrome:unstable
script:
- bash $SCRIPT
cache:
Expand Down

0 comments on commit 8196377

Please sign in to comment.