forked from rancher/terraform-provider-rancher2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.drone.yml
75 lines (70 loc) · 1.82 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
---
kind: pipeline
name: default
steps:
- name: build
image: docker:19.03.12-dind
environment:
GOPATH: /go
PATH: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/go/bin
commands:
- /usr/local/bin/dockerd-entrypoint.sh &
- apk add -U bash make gcc musl-dev git wget go curl
- mkdir -p /go/src/github.com/rancher
- ln -s /drone/src /go/src/github.com/rancher/terraform-provider-rancher2
- cd /go/src/github.com/rancher/terraform-provider-rancher2
- make docker-build
- make docker-testacc
- kill %1
privileged: true
- name: build-all-binaries
image: golang:1.16.5
environment:
CROSS: 1
VERSION: ${DRONE_TAG}
commands:
- apt-get update
- apt-get install -y xz-utils zip rsync jq curl ca-certificates
- mkdir -p /go/src/github.com/rancher
- ln -s /drone/src /go/src/github.com/rancher/terraform-provider-rancher2
- cd /go/src/github.com/rancher/terraform-provider-rancher2
- make build-rancher
- make package-rancher
when:
event: tag
- name: gpg_sign_release
image: plugins/gpgsign
settings:
key:
from_secret: gpg_key
passphrase:
from_secret: gpg_passphrase
files:
- dist/artifacts/${DRONE_TAG}/terraform-provider-rancher2_*_SHA256SUMS
detach_sign: true
armor: false
when:
event: tag
- name: github_binary_prerelease
image: plugins/github-release
settings:
prerelease: true
files:
- dist/artifacts/${DRONE_TAG}/terraform-provider-rancher2_*
api_key:
from_secret: github_token
when:
event: tag
ref:
include: [ refs/tags/*rc* ]
- name: github_binary_release
image: plugins/github-release
settings:
files:
- dist/artifacts/${DRONE_TAG}/terraform-provider-rancher2_*
api_key:
from_secret: github_token
when:
event: tag
ref:
exclude: [ refs/tags/*rc* ]