mirror of
https://github.com/thegeeklab/wp-gitea-release.git
synced 2024-11-09 17:30:39 +00:00
15 lines
345 B
Plaintext
15 lines
345 B
Plaintext
local pipeline = import 'pipeline.libsonnet';
|
|
local name = 'drone-gitea-release';
|
|
|
|
[
|
|
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',
|
|
]),
|
|
]
|