phase1: move ccache.sh invocation step as well
authorJo-Philipp Wich <jo@mein.io>
Mon, 23 Jan 2017 13:59:56 +0000 (14:59 +0100)
committerJo-Philipp Wich <jo@mein.io>
Mon, 23 Jan 2017 13:59:59 +0000 (14:59 +0100)
The previous commit just moved the download step and not the actual invocation.

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
phase1/master.cfg

index 632294f65c096233622e0c0fae5a7b074b94052f..fa671aa8a14c1b79b49d78ad8b14c79154ed7bcd 100644 (file)
@@ -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))