mirror of
https://github.com/thegeeklab/wp-git-action.git
synced 2024-11-12 16:20:40 +00:00
15 lines
342 B
Plaintext
15 lines
342 B
Plaintext
|
local pipeline = import 'pipeline.libsonnet';
|
||
|
local name = 'drone-git-action';
|
||
|
|
||
|
[
|
||
|
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',
|
||
|
]),
|
||
|
]
|