Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1366)

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/.travis.yml

Issue 2810063002: Stop skipping dot files in wpt-import. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/external/wpt/.travis.yml
diff --git a/third_party/WebKit/LayoutTests/external/wpt/.travis.yml b/third_party/WebKit/LayoutTests/external/wpt/.travis.yml
new file mode 100644
index 0000000000000000000000000000000000000000..a558820fd4ea7c4d16d022d0037dbf47094c4fa9
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/external/wpt/.travis.yml
@@ -0,0 +1,64 @@
+dist: trusty
+sudo: required
+language: python
+addons:
+ hosts:
+ - web-platform.test
+ - www.web-platform.test
+ - www1.web-platform.test
+ - www2.web-platform.test
+ - xn--n8j6ds53lwwkrqhv28a.web-platform.test
+ - xn--lve-6lad.web-platform.test
+before_install:
+ - git submodule update --init --recursive
+ - export DISPLAY=:99.0
+ - sh -e /etc/init.d/xvfb start
+install:
+ - pip install -U setuptools
+ - pip install -U requests
+env: # required at the top-level for allow_failures to work below
+matrix:
+ include:
+ - os: linux
+ python: "2.7"
+ env: SCRIPT=ci_lint.sh
+ - os: linux
+ python: "2.7"
+ env: SCRIPT=ci_built_diff.sh
+ - os: linux
+ python: "2.7"
+ env: SCRIPT=css/build-css-testsuites.sh
+ - os: linux
+ python: "2.7"
+ addons:
+ apt:
+ packages:
+ - libnss3-tools
+ env:
+ - secure: "YTSXPwI0DyCA1GhYrLT9KMEV6b7QQKuEeaQgeFDP38OTzJ1+cIj3CC4SRNqbnJ/6SJwPGcdqSxLuV8m4e5HFFnyCcQnJe6h8EMsTehZ7W3j/fP9UYrJqYqvGpe3Vj3xblO5pwBYmq7sg3jAmmuCgAgOW6VGf7cRMucrsmFeo7VM="
+ - SCRIPT=ci_stability.sh PRODUCT=firefox:nightly
+ - os: linux
+ sudo: required
+ python: "2.7"
+ addons:
+ apt:
+ packages:
+ - libappindicator1
+ - fonts-liberation
+ env:
+ - secure: "YTSXPwI0DyCA1GhYrLT9KMEV6b7QQKuEeaQgeFDP38OTzJ1+cIj3CC4SRNqbnJ/6SJwPGcdqSxLuV8m4e5HFFnyCcQnJe6h8EMsTehZ7W3j/fP9UYrJqYqvGpe3Vj3xblO5pwBYmq7sg3jAmmuCgAgOW6VGf7cRMucrsmFeo7VM="
+ - SCRIPT=ci_stability.sh PRODUCT=chrome:unstable
+ exclude:
+ - env: # exclude empty env from the top-level above
+ allow_failures:
+ - env: SCRIPT=css/build-css-testsuites.sh
+script:
+ - bash $SCRIPT
+cache:
+ directories:
+ - $HOME/.cache/pip
+notifications:
+ email:
+ on_success: never
+ on_failure: always
+ webhooks: https://w3c-test.org/prbuildbot.py

Powered by Google App Engine
This is Rietveld 408576698