-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
36 lines (33 loc) · 1.1 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# This is how you tell travis to run the build on the new container (docker) based infrastructure
sudo: false
language: node_js
node_js:
- "4.4.7"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
cache:
directories:
- node_modules
# Since sudo isn't possible anymore (for now), meteor can't add a link to itself to /usr/local/bin,
# so you'll have to add the meteor installation directory to the PATH yourself.
before_install:
# - "curl https://install.meteor.com | /bin/sh"
# - export PATH="$HOME/.meteor:$PATH"
# - meteor --version
# - "npm install -g [email protected] coffee-script"
# - "meteor add practicalmeteor:mocha-console-runner"
# - "meteor remove appcache"
# - "meteor reset"
# - "npm run test-packages"
# - "npm run test-travis"
# - "meteor reset"
script:
# - "npm run testall-travis" removed for now till the project structure has changed
- "npm run lint"