From: Jo-Philipp Wich Date: Tue, 16 Jul 2019 19:28:31 +0000 (+0200) Subject: phase2: disable slave side package signing X-Git-Tag: v1~79 X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=3f77ecd5d2705458b0ab0065adacd35f4b69fb7a;p=buildbot.git phase2: disable slave side package signing Since we do not expose secret using keys to buildslaves anymore, we cannot sign the package indexes on the slave side either. Signed-off-by: Jo-Philipp Wich --- diff --git a/phase2/master.cfg b/phase2/master.cfg index 753fca8..2cfd557 100644 --- a/phase2/master.cfg +++ b/phase2/master.cfg @@ -435,7 +435,7 @@ for arch in arches: description = "Building packages", workdir = "build/sdk", timeout = 3600, - command = ["make", WithProperties("-j%(jobs)d", jobs=GetNumJobs), "IGNORE_ERRORS=n m y", "BUILD_LOG=1", "CONFIG_AUTOREMOVE=y"], + command = ["make", WithProperties("-j%(jobs)d", jobs=GetNumJobs), "IGNORE_ERRORS=n m y", "BUILD_LOG=1", "CONFIG_AUTOREMOVE=y", "CONFIG_SIGNED_PACKAGES="], env = {'CCACHE_BASEDIR': WithProperties("%(cwd)s", cwd=GetCwd)}, haltOnFailure = True))