forked from dr-dimitru/blaze
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcircle.yml
29 lines (29 loc) · 824 Bytes
/
circle.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
checkout:
post:
- git submodule sync
- git submodule update --init --recursive
machine:
node:
version: 0.10.33
pre:
- git config --global user.name "circleci"
- git config --global user.email "[email protected]"
# - curl https://install.meteor.com | /bin/sh
- git clone --recursive -b devel https://github.com/meteor/meteor.git /tmp/meteor
dependencies:
override:
- npm install [email protected] mkdirp
# - meteor --get-ready
- /tmp/meteor/meteor --get-ready
- cd site; npm install
test:
override:
# - tests/test-runner/test-all.sh:
# parallel: true
- METEOR_COMMAND=/tmp/meteor/meteor tests/test-runner/test-all.sh:
parallel: true
deployment:
production:
branch: master
commands:
- cd site; npm run deploy