test multiple push
Some checks reported errors
continuous-integration/drone/pr Build was killed

Signed-off-by: Christian Richter <crichter@owncloud.com>
This commit is contained in:
Christian Richter
2022-05-12 10:13:50 +02:00
parent 16b4298c34
commit 9a863f6ded

View File

@@ -1,9 +1,9 @@
def main(ctx):
return [
stepPR("amd64"),
stepPR("arm64"),
stepMergeMaster("amd64"),
stepMergeMaster("arm64"),
#stepPR("arm64"),
#stepMergeMaster("amd64"),
#stepMergeMaster("arm64"),
]
@@ -24,12 +24,39 @@ def stepPR(arch):
"dockerfile": "motsognir/Dockerfile",
"repo": "dragonchaser/motsognir",
"dry_run": "true",
"purge" : "false",
"tag": "latest-%s" % (arch),
}
},
{
"name": "publish-image-dockerhub-%s" % (arch),
"image": "plugins/docker",
"settings": {
"dockerfile": "motsognir/Dockerfile",
"repo": "dragonchaser/motsognir",
"dry_run": "false",
"tag": "latest-%s" % (arch),
"username": {
"from_secret": "dockerhub-user"
"from_secret": "dockerhub-userxx"
},
"password": {
"from_secret": "dockerhub-password"
"from_secret": "dockerhub-passwordxx"
}
}
},
{
"name": "publish-image-quay-%s" % (arch),
"image": "plugins/docker",
"settings": {
"dockerfile": "motsognir/Dockerfile",
"repo": "quay.io/dragonchaser/motsognir",
"dry_run": "false",
"tag": "latest-%s" % (arch),
"username": {
"from_secret": "dockerhub-userxx"
},
"password": {
"from_secret": "dockerhub-passwordxx"
}
}
},