forked from convox/rack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
circle.yml
43 lines (39 loc) · 971 Bytes
/
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
machine:
environment:
INSTALL_DIR: /home/ubuntu/.go_workspace/src/github.com/convox/rack
post:
- sudo apt-get update; sudo apt-get install curl
- sudo rm -rf /usr/local/go
- curl https://storage.googleapis.com/golang/go1.7.5.linux-amd64.tar.gz -O
- sudo tar -C /usr/local -xzf go1.7.5.linux-amd64.tar.gz
dependencies:
pre:
- ci/dependencies-pre.sh
test:
pre:
- ci/install.sh:
parallel: true
timeout: 1200
override:
- ci/tests/example-app django:
parallel: true
- ci/tests/example-app node-workers:
parallel: true
- ci/tests/example-app rails:
parallel: true
timeout: 1200
post:
- ci/report.sh:
parallel: true
- ci/uninstall.sh:
parallel: true
- ci/cleanup.sh:
parallel: true
deployment:
release:
branch: master
commands:
- ci/release.sh
notify:
webhooks:
- url: https://release.convox.com/circleci/build/rack