-
Notifications
You must be signed in to change notification settings - Fork 0
/
circle.yml
62 lines (53 loc) · 1.27 KB
/
circle.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#
# CircleCI Configuration
#
# Machine Settings
machine:
services:
- docker
node:
version: 0.12
environment:
REPO: quay.io/thisissoon/fm-frontend
TAG: $(sed 's/master/latest/;s/\//\-/' <<<$CIRCLE_BRANCH)
# Dependencies
dependencies:
pre:
- npm install -g grunt-cli bower protractor
- webdriver-manager update
- docker login -u $DOCKER_USER -p $DOCKER_PASS -e $DOCKER_EMAIL $DOCKER_REGISTRY
override:
- npm -d install
# Test Commands
test:
pre:
- chmod +x ./tests/e2e/saucelabs.sh
override:
- grunt test:development
- grunt test
- ./tests/e2e/saucelabs.sh
post:
- ./node_modules/coveralls/bin/coveralls.js < coverage/lcov.info
# Deployment
deployment:
prod:
branch: master
commands:
- grunt build --env production
- docker build -t $REPO:$TAG .
- docker tag $REPO:$TAG $REPO:prod
- docker push $REPO:prod
qa:
branch: /release\/.*/
commands:
- grunt build --env production
- docker build -t $REPO:$TAG .
- docker tag $REPO:$TAG $REPO:qa
- docker push $REPO:qa
latest:
branch: develop
commands:
- grunt build --env production
- docker build -t $REPO:$TAG .
- docker tag $REPO:$TAG $REPO:latest
- docker push $REPO:latest