2017-05-26 13:17:00 +03:00
|
|
|
# Customize the test machine
|
|
|
|
machine:
|
|
|
|
pre:
|
|
|
|
- git config --global user.email "circleci@joyent.zone"
|
|
|
|
- git config --global user.name "circlebot"
|
|
|
|
- curl -sSL https://s3.amazonaws.com/circle-downloads/install-circleci-docker.sh | bash -s -- 1.10.0
|
|
|
|
services:
|
|
|
|
- docker
|
|
|
|
node:
|
|
|
|
version: 7.7.3
|
|
|
|
|
|
|
|
dependencies:
|
|
|
|
override:
|
2017-05-30 15:40:37 +03:00
|
|
|
# add rethinkdb sources
|
|
|
|
- source /etc/lsb-release && echo "deb http://download.rethinkdb.com/apt $DISTRIB_CODENAME main" | sudo tee /etc/apt/sources.list.d/rethinkdb.list
|
|
|
|
- wget -qO- https://download.rethinkdb.com/apt/pubkey.gpg | sudo apt-key add -
|
|
|
|
# install zmq and rdb
|
|
|
|
- sudo apt-get update && sudo apt-get install libzmq3-dev rethinkdb
|
2017-05-26 13:39:39 +03:00
|
|
|
# install node dependencies
|
2017-05-26 13:28:33 +03:00
|
|
|
- yarn install
|
2017-05-26 13:33:32 +03:00
|
|
|
- yarn run prepare
|
2017-05-26 13:17:00 +03:00
|
|
|
|
|
|
|
test:
|
|
|
|
override:
|
|
|
|
# lint
|
|
|
|
- yarn run lint
|
|
|
|
# test
|
|
|
|
- yarn run test
|
|
|
|
|
2017-05-30 20:52:10 +03:00
|
|
|
deployment:
|
2017-05-31 13:13:46 +03:00
|
|
|
pre:
|
|
|
|
# install docker-compose
|
|
|
|
- sudo curl -L https://github.com/docker/compose/releases/download/1.8.1/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
|
|
|
|
- sudo chmod +x /usr/local/bin/docker-compose
|
|
|
|
# install and setup triton
|
|
|
|
- yarn global add triton@4.15.0 || cat /home/ubuntu/.yarn-config/global/yarn-error.log
|
|
|
|
|
2017-05-30 20:52:10 +03:00
|
|
|
development:
|
|
|
|
branch: master
|
|
|
|
commands:
|
2017-05-31 03:44:37 +03:00
|
|
|
- ./scripts/deploy
|
2017-05-26 13:17:00 +03:00
|
|
|
# production:
|
|
|
|
# tag: /production-*/
|
|
|
|
# commands:
|
|
|
|
# - CIRCLE_BRANCH=staging ./bin/docker-login
|
|
|
|
# - CIRCLE_BRANCH=staging ./bin/on-changes-publish-ui
|
|
|
|
# - CIRCLE_BRANCH=staging make -j2 build
|
|
|
|
# - CIRCLE_BRANCH=staging make -j2 push
|
|
|
|
# - CIRCLE_BRANCH=staging ./bin/deploy
|