-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.drone.yml
78 lines (68 loc) · 1.41 KB
/
.drone.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
---
kind: pipeline
type: docker
name: default
volumes:
- name: cache
host:
path: /cache/magic-wall
steps:
- name: docker-build-django
image: plugins/kaniko
settings:
registry: r.sacovo.ch
repo: r.sacovo.ch/sacovo/magic-wall-backend
cache: true
auto_tag: true
cache-repo: r.sacovo.ch/sacovo/magic-wall-backend
username:
from_secret: portus_username
password:
from_secret: portus_token
cache_from: r.sacovo.ch/sacovo/magic-wall-backend
- name: restore-cache
image: drillster/drone-volume-cache
settings:
restore: true
mount:
- ./app/node_modules
volumes:
- name: cache
path: /cache
- name: build-angular
image: node
commands:
- cd app/
- npm install
- npm run build app -- --prod
depends_on:
- restore-cache
- name: rebuild-cache
image: drillster/drone-volume-cache
settings:
rebuild: true
mount:
- ./app/node_modules
volumes:
- name: cache
path: /cache
depends_on:
- build-angular
- name: docker-build-app
image: plugins/kaniko
settings:
registry: r.sacovo.ch
repo: r.sacovo.ch/sacovo/magic-wall-frontend
auto_tag: true
username:
from_secret: portus_username
password:
from_secret: portus_token
context: app/
dockerfile: app/Dockerfile
depends_on:
- build-angular
---
kind: signature
hmac: fb0625cee0fa48f22f2730158c6b2571ea29ecbde982b6a6b6cf6b0ba9ddb817
...