forked from rancher/rancher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.drone.yml
80 lines (74 loc) · 1.66 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
79
80
---
pipeline:
build:
privileged: true
image: rancher/dapper:1.11.2
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
- dapper ci
stage-binaries:
image: rancher/dapper:1.11.2
commands:
- cp -r ./bin/* ./package/
when:
branch: master
event: [push,tag]
docker-publish-master:
image: plugins/docker
dockerfile: package/Dockerfile
repo: rancher/rancher
context: package/
tag: master
secrets: [docker_username, docker_password]
build_args:
- VERSION=master
when:
branch: master
event: push
docker-publish-master-agent:
image: plugins/docker
dockerfile: package/Dockerfile.agent
repo: rancher/rancher-agent
context: package/
tag: master
secrets: [docker_username, docker_password]
build_args:
- VERSION=master
when:
branch: master
event: push
docker-publish:
image: plugins/docker
dockerfile: package/Dockerfile
repo: rancher/rancher
context: package/
tag: ${DRONE_TAG}
secrets: [docker_username, docker_password]
build_args:
- VERSION=${DRONE_TAG}
when:
branch: master
event: tag
docker-publish-agent:
image: plugins/docker
dockerfile: package/Dockerfile.agent
repo: rancher/rancher-agent
context: package/
tag: ${DRONE_TAG}
secrets: [docker_username, docker_password]
build_args:
- VERSION=${DRONE_TAG}
when:
branch: master
event: tag
github_binary_release:
image: plugins/github-release
files:
- bin/rancher-*
checksum:
- sha256
secrets: [github_token]
when:
branch: master
event: tag