forked from ionic-team/ionic-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcircle.yml
More file actions
22 lines (22 loc) · 704 Bytes
/
circle.yml
File metadata and controls
22 lines (22 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
machine:
node:
version: v0.10.26
ruby:
version: 2.1.2
checkout:
post:
# Make sure that the git repo that circleCI clones is not cloned shallow
# (by default, it only clones the last 25 commits - aka shallow)
# copy/pasted from circleCI support)
- "[[ ! -s \"$(git rev-parse --git-dir)/shallow\" ]] || git fetch --unshallow"
dependencies:
post:
- bower install
test:
override:
- ./scripts/circle/test.sh --index=$CIRCLE_NODE_INDEX --total=$CIRCLE_NODE_TOTAL: {parallel: true}
deployment:
tasks:
branch: master
commands:
- ./scripts/circle/deploy.sh --sha1=$CIRCLE_SHA1 --index=$CIRCLE_NODE_INDEX --build-number=$CIRCLE_BUILD_NUM: {parallel: true}