build only needed binary for CI docker builds

This commit is contained in:
Willy Kloucek
2021-11-16 10:12:21 +01:00
parent 21220a22d4
commit 57ddff4ed4

View File

@@ -880,7 +880,7 @@ def dockerRelease(ctx, arch):
"name": "build",
"image": OC_CI_GOLANG,
"commands": [
"make -C ocis release-linux-docker",
"make -C ocis release-linux-docker-%s" % (arch),
],
},
{
@@ -954,7 +954,7 @@ def dockerEos(ctx):
"name": "build",
"image": OC_CI_GOLANG,
"commands": [
"make -C ocis release-linux-docker",
"make -C ocis release-linux-docker-amd64",
],
},
{