aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonen Babayoff <[email protected]>2015-08-23 21:55:10 -0400
committerRonen Babayoff <[email protected]>2015-08-23 21:55:10 -0400
commitcf0bd70d5fca9c0169414f5d2c16ca32431a3fd9 (patch)
tree577c399352e5167d2fcd9a14872925c3f8e64266
parentbbbbde58528848c583978b15ff23dffd99c82c48 (diff)
downloadfaker-cf0bd70d5fca9c0169414f5d2c16ca32431a3fd9.tar.xz
faker-cf0bd70d5fca9c0169414f5d2c16ca32431a3fd9.zip
Update Travis CI to new container based infrastructure and update travis meteor tests to node v0.10.36
-rwxr-xr-x.travis.yml11
1 files changed, 7 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index b0d096ad..5c6ca522 100755
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,16 +1,19 @@
+# Run on new travis container (docker) based infrastructure
+sudo: false
language: node_js
node_js:
- "0.11"
- "0.10"
# meteor specific node version
- - "0.10.29"
+ - "0.10.36"
# - "0.8"
before_install:
# Install meteor and spacejam, a meteor command line package tester
- - 'if [ "$(node -v)" = "v0.10.29" ]; then curl https://install.meteor.com | /bin/sh; fi'
- - 'if [ "$(node -v)" = "v0.10.29" ]; then npm install -g spacejam; fi'
+ - 'if [ "$(node -v)" = "v0.10.36" ]; then curl https://install.meteor.com | /bin/sh; fi'
+ - 'if [ "$(node -v)" = "v0.10.36" ]; then npm install -g spacejam; fi'
+ - 'if [ "$(node -v)" = "v0.10.36" ]; then export PATH="$HOME/.meteor:$PATH"; fi'
script:
- "npm test"
- - 'if [ "$(node -v)" = "v0.10.29" ]; then spacejam test-packages --mongo-url=dummy ./; fi'
+ - 'if [ "$(node -v)" = "v0.10.36" ]; then spacejam test-packages --mongo-url=dummy ./; fi'