-
Notifications
You must be signed in to change notification settings - Fork 0
/
.darius.yml
92 lines (75 loc) · 2.44 KB
/
.darius.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
tasks:
update:
- name: install ruby gems
command: >
docker run \
--rm \
--volume $(pwd):/app \
idfly/go-app \
bundle install \
--gemfile .build/gemfile \
--path ../.build/vendor/bundle \
--jobs 128
- name: install go dependecies
command:
- name: main
command: >
docker run \
--rm \
--volume $(pwd)/.build/go:/go \
--volume $(pwd):/go/src/github.com/idfly/darius \
--workdir /go/src/github.com/idfly/darius \
idfly/go-app \
go get .
- name: main test
command: >
docker run \
--rm \
--volume $(pwd)/.build/go:/go \
--volume $(pwd):/go/src/github.com/idfly/darius \
--workdir /go/src/github.com/idfly/darius \
idfly/go-app \
go get -t .
- name: cli
command: >
docker run \
--rm \
--volume $(pwd)/.build/go:/go \
--volume $(pwd):/go/src/github.com/idfly/darius \
--workdir /go/src/github.com/idfly/darius/darius \
idfly/go-app \
go get .
- name: cli test
command: >
docker run \
--rm \
--volume $(pwd)/.build/go:/go \
--volume $(pwd):/go/src/github.com/idfly/darius \
--workdir /go/src/github.com/idfly/darius/darius \
idfly/go-app \
go get -t .
up:
name: update dependecies and start dev containers
command:
- task: run-user-task
task-name: update
- name: run services
command: docker-compose -f .build/docker-compose.yml up -d
- >
echo '
Application was started; run "docker-compose -f .build/docker-compose.yml up"
for connecting to logs.
'
build:
name: build
command:
- task: run-user-task
task-name: update
- name: run services
command: docker-compose -f .build/docker-compose.yml up -d
- name: run main tests
command: docker exec app.darius.local go test github.com/idfly/darius
- name: run cli tests
command: docker exec app.darius.local go test github.com/idfly/darius/darius
- name: stop services
command: docker-compose -f .build/docker-compose.yml stop