| OLD | NEW |
| (Empty) | |
| 1 dist: trusty |
| 2 sudo: required |
| 3 language: python |
| 4 addons: |
| 5 hosts: |
| 6 - web-platform.test |
| 7 - www.web-platform.test |
| 8 - www1.web-platform.test |
| 9 - www2.web-platform.test |
| 10 - xn--n8j6ds53lwwkrqhv28a.web-platform.test |
| 11 - xn--lve-6lad.web-platform.test |
| 12 before_install: |
| 13 - git submodule update --init --recursive |
| 14 - export DISPLAY=:99.0 |
| 15 - sh -e /etc/init.d/xvfb start |
| 16 install: |
| 17 - pip install -U setuptools |
| 18 - pip install -U requests |
| 19 env: # required at the top-level for allow_failures to work below |
| 20 matrix: |
| 21 include: |
| 22 - os: linux |
| 23 python: "2.7" |
| 24 env: SCRIPT=ci_lint.sh |
| 25 - os: linux |
| 26 python: "2.7" |
| 27 env: SCRIPT=ci_built_diff.sh |
| 28 - os: linux |
| 29 python: "2.7" |
| 30 env: SCRIPT=css/build-css-testsuites.sh |
| 31 - os: linux |
| 32 python: "2.7" |
| 33 addons: |
| 34 apt: |
| 35 packages: |
| 36 - libnss3-tools |
| 37 env: |
| 38 - secure: "YTSXPwI0DyCA1GhYrLT9KMEV6b7QQKuEeaQgeFDP38OTzJ1+cIj3CC4SRNqbn
J/6SJwPGcdqSxLuV8m4e5HFFnyCcQnJe6h8EMsTehZ7W3j/fP9UYrJqYqvGpe3Vj3xblO5pwBYmq7sg3
jAmmuCgAgOW6VGf7cRMucrsmFeo7VM=" |
| 39 - SCRIPT=ci_stability.sh PRODUCT=firefox:nightly |
| 40 - os: linux |
| 41 sudo: required |
| 42 python: "2.7" |
| 43 addons: |
| 44 apt: |
| 45 packages: |
| 46 - libappindicator1 |
| 47 - fonts-liberation |
| 48 env: |
| 49 - secure: "YTSXPwI0DyCA1GhYrLT9KMEV6b7QQKuEeaQgeFDP38OTzJ1+cIj3CC4SRNqbn
J/6SJwPGcdqSxLuV8m4e5HFFnyCcQnJe6h8EMsTehZ7W3j/fP9UYrJqYqvGpe3Vj3xblO5pwBYmq7sg3
jAmmuCgAgOW6VGf7cRMucrsmFeo7VM=" |
| 50 - SCRIPT=ci_stability.sh PRODUCT=chrome:unstable |
| 51 exclude: |
| 52 - env: # exclude empty env from the top-level above |
| 53 allow_failures: |
| 54 - env: SCRIPT=css/build-css-testsuites.sh |
| 55 script: |
| 56 - bash $SCRIPT |
| 57 cache: |
| 58 directories: |
| 59 - $HOME/.cache/pip |
| 60 notifications: |
| 61 email: |
| 62 on_success: never |
| 63 on_failure: always |
| 64 webhooks: https://w3c-test.org/prbuildbot.py |
| OLD | NEW |