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

Unified Diff: .travis.yml

Issue 1205043002: Enable Chrome Canary tests on Travis (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Clean up travis karma passes Created 5 years, 6 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
« no previous file with comments | « no previous file | karma.conf.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: .travis.yml
diff --git a/.travis.yml b/.travis.yml
index 9029f88587540fbdd0739c5f39a1585fe9455f5a..6d9277e4bc3772f73fbddb957d2b41667ea4c281 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -5,6 +5,17 @@ dart:
- stable
before_install:
- pub global activate dart_coveralls
+install:
+ - npm install
+ - export CHROME_URL=https://storage.googleapis.com/chromium-browser-snapshots/Linux_x64
+ - export CHROME_REV=$(curl -s ${CHROME_URL}/LAST_CHANGE)
+ - curl ${CHROME_URL}/${CHROME_REV}/chrome-linux.zip --create-dirs -o out/chrome-linux.zip
+ - unzip out/chrome-linux.zip -d out
+before_script:
+ - export CHROME_CANARY_BIN=$PWD/out/chrome-linux/chrome
+ - export DISPLAY=:99.0
+ - sh -e /etc/init.d/xvfb start
script:
- ./tool/presubmit.sh
+ - ./node_modules/karma/bin/karma start --single-run
- ./tool/coverage.sh
« no previous file with comments | « no previous file | karma.conf.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698