mirror of
https://github.com/drone-plugins/drone-webhook.git
synced 2026-06-04 18:24:05 +08:00
15 lines
339 B
Jsonnet
15 lines
339 B
Jsonnet
local pipeline = import 'pipeline.libsonnet';
|
|
local name = 'drone-webhook';
|
|
|
|
[
|
|
pipeline.test('linux', 'amd64'),
|
|
pipeline.build(name, 'linux', 'amd64'),
|
|
pipeline.build(name, 'linux', 'arm64'),
|
|
pipeline.build(name, 'linux', 'arm'),
|
|
pipeline.notifications(depends_on=[
|
|
'linux-amd64',
|
|
'linux-arm64',
|
|
'linux-arm',
|
|
]),
|
|
]
|