File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed
Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments