Index: .travis.yml |
diff --git a/.travis.yml b/.travis.yml |
index 9029f88587540fbdd0739c5f39a1585fe9455f5a..109b64b5a3a4b8394ca2d977285b4b5e041c58a9 100644 |
--- a/.travis.yml |
+++ b/.travis.yml |
@@ -5,6 +5,16 @@ dart: |
- stable |
before_install: |
- pub global activate dart_coveralls |
Jennifer Messerly
2015/06/24 15:44:22
we may want to move these into a script at some po
vsm
2015/06/24 17:19:55
This might be useful if we want to automatically g
|
+ - 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 |
+ - export CHROME_CANARY_BIN=$PWD/out/chrome-linux/chrome |
+ - export DISPLAY=:99.0 |
+ - sh -e /etc/init.d/xvfb start |
+before_script: |
+ - npm install |
Jennifer Messerly
2015/06/24 15:44:22
I think this is normally the "install" step:
http:
vsm
2015/06/24 17:19:55
I tried to redo the steps to better match that (an
|
script: |
- ./tool/presubmit.sh |
+ - ./node_modules/karma/bin/karma start --single-run |
Jennifer Messerly
2015/06/24 15:44:22
should this be part of presubmit?
vsm
2015/06/24 17:19:55
I wanted to make you guys could run it first. :-)
|
- ./tool/coverage.sh |