diff --git a/.ci/Jenkinsfile b/.ci/Jenkinsfile
index 8bee8a566b9a7e211ccca1f1f21007ec7fd624ff..a4099f00a99ba98e61cc47806ae7d89eeae35335 100644
--- a/.ci/Jenkinsfile
+++ b/.ci/Jenkinsfile
@@ -1,13 +1,15 @@
 @Library("jenlib") _
 
-wafDefaultPipeline(projects: ["sctrltp"],
-                   container: [app: "wafer"],
-                   notificationChannel: "#softies",
-                   enableClangFormat: false,
-                   configureInstallOptions: "--build-profile=ci")
+withCcache() {
+	wafDefaultPipeline(projects: ["sctrltp"],
+	                   container: [app: "wafer"],
+	                   notificationChannel: "#softies",
+	                   enableClangFormat: false,
+	                   configureInstallOptions: "--build-profile=ci")
 
-wafDefaultPipeline(projects: ["sctrltp"],
-                   container: [app: "dls-core"],
-                   notificationChannel: "#dls-software",
-                   enableClangFormat: false,
-                   configureInstallOptions: "--build-profile=ci")
+	wafDefaultPipeline(projects: ["sctrltp"],
+	                   container: [app: "dls-core"],
+	                   notificationChannel: "#dls-software",
+	                   enableClangFormat: false,
+	                   configureInstallOptions: "--build-profile=ci")
+}