mirror of
https://github.com/easychen/pushdeer.git
synced 2025-02-23 16:34:55 +08:00
17 lines
356 B
Jsonnet
17 lines
356 B
Jsonnet
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',
|
|
]),
|
|
]
|