From cf0bd70d5fca9c0169414f5d2c16ca32431a3fd9 Mon Sep 17 00:00:00 2001 From: Ronen Babayoff Date: Sun, 23 Aug 2015 21:55:10 -0400 Subject: Update Travis CI to new container based infrastructure and update travis meteor tests to node v0.10.36 --- .travis.yml | 11 +++++++---- 1 file 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' -- cgit v1.2.3