mirror of
https://github.com/appleboy/drone-scp.git
synced 2026-06-04 18:23:59 +08:00
17 lines
363 B
Jsonnet
17 lines
363 B
Jsonnet
local pipeline = import 'pipeline.libsonnet';
|
|
local name = 'drone-jenkins';
|
|
|
|
[
|
|
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',
|
|
]),
|
|
]
|