From 2a33327b16b91867a08141690eaa6e49a1f7695a Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Mon, 23 Jan 2017 14:59:56 +0100 Subject: [PATCH] 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 --- phase1/master.cfg | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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)) -- 2.30.2