2016-10-17 19:56:01 +03:00
|
|
|
## Customize the test machine
|
|
|
|
machine:
|
2016-10-20 19:15:43 +03:00
|
|
|
pre:
|
2016-10-24 13:01:03 +03:00
|
|
|
- git config --global user.email "circleci@joyent.zone"
|
|
|
|
- git config --global user.name "circlebot"
|
2016-10-21 19:09:14 +03:00
|
|
|
- curl -sSL https://s3.amazonaws.com/circle-downloads/install-circleci-docker.sh | bash -s -- 1.10.0
|
2016-10-24 13:53:09 +03:00
|
|
|
- sudo apt-key adv --keyserver pgp.mit.edu --recv D101F7899D41F3C3
|
|
|
|
- echo "deb http://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
|
|
|
|
- sudo apt-get update && sudo apt-get install yarn
|
2016-10-17 19:56:01 +03:00
|
|
|
|
2016-10-18 12:54:32 +03:00
|
|
|
services:
|
|
|
|
- docker
|
2016-10-19 17:24:46 +03:00
|
|
|
node:
|
2016-10-24 18:55:06 +03:00
|
|
|
version: 6.9.1
|
2016-10-18 12:54:32 +03:00
|
|
|
|
2016-10-18 13:00:25 +03:00
|
|
|
dependencies:
|
2016-10-21 18:44:35 +03:00
|
|
|
pre:
|
2016-10-26 16:36:42 +03:00
|
|
|
- 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
|
2016-10-26 12:58:24 +03:00
|
|
|
- sudo chmod +x /usr/local/bin/docker-compose
|
2016-10-24 13:53:09 +03:00
|
|
|
- yarn global add triton
|
2016-10-21 19:05:06 +03:00
|
|
|
- echo '{"url":"https://eu-ams-1.api.joyent.com","account":"'$SDC_ACCOUNT'","keyId":"c3:30:35:9b:85:48:73:44:31:cc:4b:2e:6a:00:16:e2","name":"eu-ams-1","curr":true}' | triton profile create -f -
|
2016-10-27 19:43:24 +03:00
|
|
|
- mkdir -p ${CIRCLE_TEST_REPORTS}/tap-xunit/
|
2016-10-27 18:26:41 +03:00
|
|
|
override:
|
2016-10-27 18:50:47 +03:00
|
|
|
- make && make install
|
2016-10-18 13:00:25 +03:00
|
|
|
|
|
|
|
test:
|
2016-10-27 18:26:41 +03:00
|
|
|
override:
|
2016-10-31 16:17:08 +02:00
|
|
|
- make -j2 lint-ci test-ci
|
2016-10-17 19:56:01 +03:00
|
|
|
|
2016-10-18 13:00:25 +03:00
|
|
|
deployment:
|
|
|
|
production: # just a label; label names are completely up to you
|
|
|
|
branch: master
|
|
|
|
commands:
|
2016-10-31 19:09:00 +02:00
|
|
|
- ./bin/docker-login
|
|
|
|
- make -j2 build
|
|
|
|
- make -j2 push
|
2016-10-20 16:55:05 +03:00
|
|
|
- ./bin/deploy
|
2016-10-17 19:56:01 +03:00
|
|
|
|
|
|
|
## Custom notifications
|
|
|
|
# notify:
|
|
|
|
# webhooks:
|
|
|
|
# # A list of hashes representing hooks. Only the url field is supported.
|
|
|
|
# - url: https://someurl.com/hooks/circle
|