From f997f67a7978e09a1aee38551d6ffe60393ac847 Mon Sep 17 00:00:00 2001 From: "Kenneth J. Shackleton" Date: Wed, 13 Sep 2023 08:17:53 +0100 Subject: [PATCH] Temporarily disable some build caching. Signed-off-by: Kenneth J. Shackleton --- OpenSSL/build.gradle.kts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/OpenSSL/build.gradle.kts b/OpenSSL/build.gradle.kts index 93cba01ca4..15f73a4316 100644 --- a/OpenSSL/build.gradle.kts +++ b/OpenSSL/build.gradle.kts @@ -101,7 +101,7 @@ arrayOf("armeabi-v7a", "arm64-v8a", "x86", "x86_64").forEach { outputs.files(fileTree("${openSslWorkingDir(it)}/include") { include("**/*.h") }) .withPropertyName("headers") outputs.dir("${layout.buildDirectory.get()}/libs/$it").withPropertyName("lib") - outputs.cacheIf { true } + outputs.cacheIf { false } // TODO Restore me. workingDir(projectDir) commandLine("./build_libraries.sh") args( @@ -146,7 +146,7 @@ tasks.register("configureHost") { inputs.property("version", openSslVersion()) outputs.files("$openSslWorkingDir/Makefile", "$openSslWorkingDir/configdata.pm") .withPropertyName("configure") - outputs.cacheIf { true } + outputs.cacheIf { false } // TODO Restore me. workingDir(openSslWorkingDir) commandLine("./config") } @@ -162,7 +162,7 @@ tasks.register("makeHost") { outputs.files(fileTree("$openSslWorkingDir/include") { include("**/*.h") }) .withPropertyName("headers") workingDir(openSslWorkingDir) - outputs.cacheIf { true } + outputs.cacheIf { false } // TODO Restore me. commandLine("make") args("build_libs") logging.captureStandardOutput(LogLevel.INFO) @@ -174,7 +174,7 @@ tasks.register("assembleHost") { inputs.property("version", openSslVersion()) val outputDir = "${layout.buildDirectory.get()}/libs/${targetIdentifier()}" outputs.dir(outputDir).withPropertyName("libs") - outputs.cacheIf { true } + outputs.cacheIf { false } // TODO Restore me. from(fileTree(openSslWorkingDir) { arrayOf(".a").forEach { e -> include("**/libcrypto$e")