From 486495010a3407421d3cdbf2996e809d5b35b2be Mon Sep 17 00:00:00 2001 From: Mergen Nachin Date: Thu, 12 Dec 2024 16:15:49 -0500 Subject: [PATCH] Fix CI for build-llm-demo After https://github.com/pytorch/executorch/pull/7108 landed, it broke CI, in particular build-llm-demo test. Here's an example: https://github.com/pytorch/executorch/actions/runs/12301283060/job/34332275511#logs It removed a folder than contained android artifacts. Let's just revert back to 'rm -rf cmake-out' --- .ci/scripts/test_llama.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/scripts/test_llama.sh b/.ci/scripts/test_llama.sh index 62b6f6cc088..6d009ebad51 100644 --- a/.ci/scripts/test_llama.sh +++ b/.ci/scripts/test_llama.sh @@ -149,7 +149,7 @@ which "${PYTHON_EXECUTABLE}" cmake_install_executorch_libraries() { echo "Installing libexecutorch.a, libextension_module.so, libportable_ops_lib.a" - clean_executorch_install_folders + rm -rf cmake-out retry cmake \ -DCMAKE_INSTALL_PREFIX=cmake-out \ -DCMAKE_BUILD_TYPE="$CMAKE_BUILD_TYPE" \