[buildbot] phase1: move ccache.sh invocation step as well

LEDE Commits lede-commits at lists.infradead.org
Mon Jan 23 06:00:08 PST 2017


jow pushed a commit to buildbot.git, branch master:
https://git.lede-project.org/2a33327b16b91867a08141690eaa6e49a1f7695a

commit 2a33327b16b91867a08141690eaa6e49a1f7695a
Author: Jo-Philipp Wich <jo at mein.io>
AuthorDate: Mon Jan 23 14:59:56 2017 +0100

    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 <jo at mein.io>
---
 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))



More information about the lede-commits mailing list