mirror of
https://github.com/thegeeklab/drone-docker-buildx.git
synced 2024-11-05 04:20:41 +00:00
ebce953fc4
* initial commit * switch order of args for trimPrefix
51 lines
1.3 KiB
Plaintext
51 lines
1.3 KiB
Plaintext
local pipeline = import 'pipeline.libsonnet';
|
|
|
|
[
|
|
pipeline.test('linux', 'amd64'),
|
|
|
|
pipeline.build('docker', 'linux', 'amd64'),
|
|
pipeline.build('docker', 'linux', 'arm64'),
|
|
pipeline.build('docker', 'linux', 'arm'),
|
|
pipeline.notifications('docker', depends_on=[
|
|
'linux-amd64',
|
|
'linux-arm64',
|
|
'linux-arm',
|
|
]),
|
|
|
|
pipeline.build('gcr', 'linux', 'amd64'),
|
|
pipeline.build('gcr', 'linux', 'arm64'),
|
|
pipeline.build('gcr', 'linux', 'arm'),
|
|
pipeline.notifications('gcr', depends_on=[
|
|
'linux-amd64',
|
|
'linux-arm64',
|
|
'linux-arm',
|
|
]),
|
|
|
|
pipeline.build('acr', 'linux', 'amd64'),
|
|
pipeline.build('acr', 'linux', 'arm64'),
|
|
pipeline.build('acr', 'linux', 'arm'),
|
|
pipeline.notifications('acr', depends_on=[
|
|
'linux-amd64',
|
|
'linux-arm64',
|
|
'linux-arm',
|
|
]),
|
|
|
|
pipeline.build('ecr', 'linux', 'amd64'),
|
|
pipeline.build('ecr', 'linux', 'arm64'),
|
|
pipeline.build('ecr', 'linux', 'arm'),
|
|
pipeline.notifications('ecr', depends_on=[
|
|
'linux-amd64',
|
|
'linux-arm64',
|
|
'linux-arm',
|
|
]),
|
|
|
|
pipeline.build('heroku', 'linux', 'amd64'),
|
|
pipeline.build('heroku', 'linux', 'arm64'),
|
|
pipeline.build('heroku', 'linux', 'arm'),
|
|
pipeline.notifications('heroku', depends_on=[
|
|
'linux-amd64',
|
|
'linux-arm64',
|
|
'linux-arm',
|
|
]),
|
|
]
|