|
|
@ -1,10 +1,8 @@
|
|
|
|
def main(ctx):
|
|
|
|
def main(ctx):
|
|
|
|
if ctx.build.event == "tag":
|
|
|
|
if ctx.build.event == "tag":
|
|
|
|
name = "release"
|
|
|
|
name = "release"
|
|
|
|
dry_run = False
|
|
|
|
|
|
|
|
elif ctx.build.branch == "master":
|
|
|
|
elif ctx.build.branch == "master":
|
|
|
|
name = "master"
|
|
|
|
name = "master"
|
|
|
|
dry_run = True
|
|
|
|
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
return
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
@ -20,20 +18,21 @@ def main(ctx):
|
|
|
|
"FORCE_DOWNLOAD=y ./build-tmp-XXX"
|
|
|
|
"FORCE_DOWNLOAD=y ./build-tmp-XXX"
|
|
|
|
]
|
|
|
|
]
|
|
|
|
},
|
|
|
|
},
|
|
|
|
step_for("core", dry_run),
|
|
|
|
step_for(ctx, "core"),
|
|
|
|
step_for("ocrd_tesserocr", dry_run),
|
|
|
|
step_for(ctx, "ocrd_tesserocr"),
|
|
|
|
]
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
def step_for(sub_image, dry_run):
|
|
|
|
def step_for(ctx, sub_image):
|
|
|
|
auto_tag = not dry_run
|
|
|
|
|
|
|
|
return {
|
|
|
|
return {
|
|
|
|
"name": "build %s" % sub_image,
|
|
|
|
"name": "build %s" % sub_image,
|
|
|
|
"image": "plugins/docker",
|
|
|
|
"image": "plugins/docker",
|
|
|
|
"settings": {
|
|
|
|
"settings": {
|
|
|
|
"dry_run": dry_run,
|
|
|
|
"auto_tag": True,
|
|
|
|
"auto_tag": auto_tag,
|
|
|
|
|
|
|
|
"purge": False,
|
|
|
|
"purge": False,
|
|
|
|
|
|
|
|
"build_args": {
|
|
|
|
|
|
|
|
"DRONE_COMMIT": ctx.build.commit,
|
|
|
|
|
|
|
|
},
|
|
|
|
"username": { "from_secret": "docker_username" },
|
|
|
|
"username": { "from_secret": "docker_username" },
|
|
|
|
"password": { "from_secret": "docker_password" },
|
|
|
|
"password": { "from_secret": "docker_password" },
|
|
|
|
"repo": "mikegerber/my_ocrd_workflow-%s" % sub_image,
|
|
|
|
"repo": "mikegerber/my_ocrd_workflow-%s" % sub_image,
|
|
|
|