feat: switch to drone 1.0 (#399)

fix #397
This commit is contained in:
Bo-Yi Wu
2019-03-16 11:37:01 +08:00
committed by GitHub
parent 5321ed4575
commit 3f223cf6c0
25 changed files with 1104 additions and 697 deletions

16
.drone.jsonnet Normal file
View File

@@ -0,0 +1,16 @@
local pipeline = import 'pipeline.libsonnet';
local name = 'gorush';
[
pipeline.test,
pipeline.build(name, 'linux', 'amd64'),
pipeline.build(name, 'linux', 'arm64'),
pipeline.build(name, 'linux', 'arm'),
pipeline.release,
pipeline.notifications(depends_on=[
'linux-amd64',
'linux-arm64',
'linux-arm',
'release-binary',
]),
]