-
Notifications
You must be signed in to change notification settings - Fork 282
/
.drone.yml
72 lines (63 loc) · 1.38 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
kind: pipeline
name: default
workspace:
base: /go
path: src/github.com/keel-hq/keel
steps:
- name: unit-test
image: golang:1.21.3
commands:
- make test
- name: build
image: golang:1.21.3
commands:
- make install
- name: build-ui
image: node:16.20.2-alpine
commands:
- cd ui
- yarn
- yarn run lint --no-fix
- name: publish-image
image: plugins/docker
settings:
repo: keelhq/keel
auto_tag: true
username:
from_secret: docker_username
password:
from_secret: docker_password
# - name: build-arm
# image: golang:1.14.2
# commands:
# - make arm
# - name: publish-arm-image
# image: plugins/docker
# settings:
# repo: keelhq/keel-arm
# dockerfile: dockerfile.armhf
# auto_tag: true
# username:
# from_secret: docker_username
# password:
# from_secret: docker_password
# - name: publish-aarch64-image
# image: plugins/docker
# settings:
# repo: keelhq/keel-aarch64
# dockerfile: dockerfile.aarch64
# auto_tag: true
# username:
# from_secret: docker_username
# password:
# from_secret: docker_password
- name: slack
image: plugins/slack
when:
status: [ success, failure ]
settings:
webhook:
from_secret: slack_url
channel: general
username: drone
icon_url: https://i.pinimg.com/originals/51/29/a4/5129a48ddad9e8408d2757dd10eb836f.jpg