From: Jo-Philipp Wich Date: Mon, 23 Jan 2017 13:59:56 +0000 (+0100) Subject: phase1: move ccache.sh invocation step as well X-Git-Tag: v1~189 X-Git-Url: http://git.openwrt.org/?p=buildbot.git;a=commitdiff_plain;h=2a33327b16b91867a08141690eaa6e49a1f7695a phase1: move ccache.sh invocation step as well The previous commit just moved the download step and not the actual invocation. Signed-off-by: Jo-Philipp Wich --- diff --git a/phase1/master.cfg b/phase1/master.cfg index 632294f..fa671aa 100644 --- a/phase1/master.cfg +++ b/phase1/master.cfg @@ -463,13 +463,6 @@ for target in targets: command=["./scripts/feeds", "install", "-a"], env = MakeEnv())) - # ccache prepare - factory.addStep(ShellCommand( - name = "prepccache", - description = "Preparing ccache", - command = ["./ccache.sh"] - )) - # seed config factory.addStep(FileDownload( mastersrc = "config.seed", @@ -522,6 +515,13 @@ for target in targets: mode = 0755 )) + # ccache prepare + factory.addStep(ShellCommand( + name = "prepccache", + description = "Preparing ccache", + command = ["./ccache.sh"] + )) + # install build key factory.addStep(FileDownload(mastersrc=home_dir+'/key-build', slavedest="key-build", mode=0600)) factory.addStep(FileDownload(mastersrc=home_dir+'/key-build.pub', slavedest="key-build.pub", mode=0600))