Files
meteor/circle.yml
2016-09-22 11:50:44 +10:00

23 lines
561 B
YAML

checkout:
post:
- git submodule update --init
dependencies:
pre:
# https://github.com/meteor/docs/blob/version-NEXT/long-form/file-change-watcher-efficiency.md
- echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
cache_directories:
- "dev_bundle"
- ".meteor"
- ".babel-cache"
override:
# shouldn't take longer than 10 minutes
- METEOR_PRETTY_OUTPUT=0 ./meteor --get-ready:
timeout: 600
test:
override:
- ./scripts/ci.sh :
parallel: true
timeout: 1200