forked from rancher/rke
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.drone.yml
59 lines (55 loc) · 1.08 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
---
pipeline:
build:
privileged: true
image: rancher/dapper:1.11.2
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
- dapper ci
build-all-binaries:
privileged: true
image: rancher/dapper:1.11.2
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
- CROSS=1
commands:
- dapper build
when:
branch: master
event: tag
stage-binaries:
image: rancher/dapper:1.11.2
commands:
- cp -r ./bin/* ./package/
when:
branch: master
event: tag
github_binary_prerelease:
image: plugins/github-release
prerelease: true
files:
- bin/*
- build/bin/rke_*
checksum:
- sha256
secrets: [github_token]
when:
branch: master
event: tag
ref:
include: [ refs/tags/*rc* ]
github_binary_release:
image: plugins/github-release
files:
- bin/*
- build/bin/rke_*
checksum:
- sha256
secrets: [github_token]
when:
branch: master
event: tag
ref:
exclude: [ refs/tags/*rc* ]