aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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'