You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ocrd-galley/.drone.star

42 lines
977 B
Plaintext

def main(ctx):
if ctx.build.event == "tag":
name = "release"
dry_run = False
elif ctx.build.branch == "master":
name = "master"
dry_run = True
else:
return
return {
"kind": "pipeline",
"name": name,
"steps": [
{
"name": "prepare data",
"image": "alpine",
"commands": [
"apk update && apk add bash curl",
"FORCE_DOWNLOAD=y ./build-tmp-XXX"
]
},
step_for("core", dry_run),
step_for("ocrd_tesserocr", dry_run),
]
}
def step_for(sub_image, dry_run):
auto_tag = not dry_run
return {
"name": "build %s" % sub_image,
"image": "plugins/docker",
"settings": {
"dry_run": dry_run,
"auto_tag": auto_tag,
"username": { "from_secret": "docker_username" },
"password": { "from_secret": "docker_password" },
"repo": "mikegerber/my_ocrd_workflow-%s" % sub_image,
"dockerfile": "Dockerfile-%s" % sub_image,
}
}