Files
dockerhub-autobuild/.drone.star
Christian Richter ac5bad889e
Some checks failed
continuous-integration/drone/pr Build is failing
attempt 2
Signed-off-by: Christian Richter <crichter@owncloud.com>
2022-05-11 17:18:04 +02:00

33 lines
623 B
Plaintext

def main(ctx):
return [
step("amd64"),
#step("arm64"),
]
def step(arch):
return {
"kind": "pipeline",
"type": "docker",
"name": "docker-%s" % (arch),
"platform": {
"os": "linux",
"arch": arch,
},
"steps": [
{
"name": "dryrun",
"image": "plugins/docker",
"settings": {
"dockerfile": "motsognir/Dockerfile",
"repo": "dragonchaser/motsognir",
"tag": "latest-%s" % (arch)
}
},
],
"trigger": {
"ref": [
"refs/pull/**",
],
},
}