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

56 lines
1.4 KiB
Plaintext

def main(ctx):
if ctx.build.event == "tag":
name = "release"
elif ctx.build.branch == "master":
name = "master"
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"
]
},
# We can't glob and have to add here manually...
step_for(ctx, "core"),
step_for(ctx, "core-cuda10.0"),
step_for(ctx, "core-cuda10.1"),
step_for(ctx, "dinglehopper"),
step_for(ctx, "ocrd_calamari"),
step_for(ctx, "ocrd_calamari03"),
step_for(ctx, "ocrd_cis"),
step_for(ctx, "ocrd_fileformat"),
step_for(ctx, "ocrd_olena"),
step_for(ctx, "ocrd_segment"),
step_for(ctx, "ocrd_tesserocr"),
step_dor(ctx, "sbb_binarization"),
step_dor(ctx, "sbb_textline_detector"),
]
}
def step_for(ctx, sub_image):
return {
"name": "build %s" % sub_image,
"image": "plugins/docker",
"settings": {
"build_args": [
"DRONE_COMMIT=%s" % ctx.build.commit,
],
"tags": [
ctx.build.commit,
],
"username": { "from_secret": "docker_username" },
"password": { "from_secret": "docker_password" },
"repo": "mikegerber/my_ocrd_workflow-%s" % sub_image,
"dockerfile": "Dockerfile-%s" % sub_image,
}
}