mirror of
https://github.com/appleboy/drone-ssh.git
synced 2025-05-09 18:23:21 +08:00
17 lines
359 B
Plaintext
17 lines
359 B
Plaintext
local pipeline = import 'pipeline.libsonnet';
|
|
local name = 'drone-ssh';
|
|
|
|
[
|
|
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',
|
|
]),
|
|
]
|