17 lines
356 B
Plaintext
17 lines
356 B
Plaintext
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',
|
|
]),
|
|
]
|