From 3b3e32aef199f1105972939885f7ff407ee481f2 Mon Sep 17 00:00:00 2001 From: David Michael Date: Mon, 5 Mar 2018 19:06:12 -0500 Subject: [PATCH] profiles: Disable ccache for SDK packages This profile is used by catalyst when building toolchains packages, which randomly fail from ccache permissions problems after certain releases. An alternative solution is to create a separate profile just for catalyst, but that doesn't seem necessary given that there aren't many SDK packages that would benefit from this caching that aren't able to be tested on the amd64-usr board, which still has ccache. --- .../coreos-overlay/profiles/coreos/targets/sdk/make.defaults | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sdk_container/src/third_party/coreos-overlay/profiles/coreos/targets/sdk/make.defaults b/sdk_container/src/third_party/coreos-overlay/profiles/coreos/targets/sdk/make.defaults index a9845fe9aa..04af0a2ef3 100644 --- a/sdk_container/src/third_party/coreos-overlay/profiles/coreos/targets/sdk/make.defaults +++ b/sdk_container/src/third_party/coreos-overlay/profiles/coreos/targets/sdk/make.defaults @@ -12,3 +12,6 @@ QEMU_SOFTMMU_TARGETS="x86_64 i386 aarch64" # For cross build support. QEMU_USER_TARGETS="aarch64" + +# Disable ccache in the SDK so it stops randomly breaking catalyst. +FEATURES="-ccache"