Skip to content

Commit ef1aa50

Browse files
committed
ci(): add circle.yml
[skip ci]
1 parent 7180789 commit ef1aa50

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

circle.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
## Customize the test machine
2+
machine:
3+
node:
4+
version: 5.11.1
5+
6+
## Customize checkout
7+
checkout:
8+
post:
9+
- git submodule sync
10+
- git submodule update --init # use submodules
11+
12+
## Customize dependencies
13+
dependencies:
14+
pre:
15+
- sudo service mongodb stop && curl -L -O https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu1204-3.0.2.tgz && tar xvzf mongodb-linux-x86_64-ubuntu1204-3.0.2.tgz && sudo mv mongodb-linux-x86_64-ubuntu1204-3.0.2/bin/* /usr/bin/ && sudo service mongodb start
16+
17+
# we automatically cache and restore many dependencies between
18+
# builds. If you need to, you can add custom paths to cache:
19+
cache_directories:
20+
- "test/fixtures/node_modules"
21+
22+
## Custom notifications
23+
#notify:
24+
#webhooks:
25+
# A list of hashes representing hooks. Only the url field is supported.
26+
#- url: https://someurl.com/hooks/circle

0 commit comments

Comments
 (0)