mirror of
https://github.com/thegeeklab/drone-s3-sync.git
synced 2024-11-05 02:40:40 +00:00
15 lines
339 B
Plaintext
15 lines
339 B
Plaintext
local pipeline = import 'pipeline.libsonnet';
|
|
local name = 'drone-s3-sync';
|
|
|
|
[
|
|
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',
|
|
]),
|
|
]
|