From 1cb85c9f235d4dd4067b7a1e2b7563662a692bcd Mon Sep 17 00:00:00 2001 From: Valentine Burley Date: Tue, 25 Mar 2025 10:38:26 +0100 Subject: [PATCH] ci/android: Keep the LLVM install when rebuilding Previously, when rebuilding LLVM for Android, the script would delete the freshly built LLVM install. This caused the android_build container to lack LLVM unless the container was rebuilt again, this time without rebuilding LLVM, and instead just downloading the tarball. Signed-off-by: Valentine Burley Part-of: --- .gitlab-ci/container/build-android-x86_64-llvm.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/.gitlab-ci/container/build-android-x86_64-llvm.sh b/.gitlab-ci/container/build-android-x86_64-llvm.sh index 4d191c55c7d..78fbb98fcfb 100755 --- a/.gitlab-ci/container/build-android-x86_64-llvm.sh +++ b/.gitlab-ci/container/build-android-x86_64-llvm.sh @@ -118,6 +118,4 @@ if [ -n "$CI" ]; then rm "${ANDROID_LLVM_ARTIFACT_NAME}.tar.zst" fi -rm -rf "$LLVM_INSTALL_PREFIX" - apt-get purge -y "${EPHEMERAL[@]}"