Skip to content

Commit b0462ae

Browse files
authored
[Release Only] Fix llama-runner jobs on ARM linux (#14677)
The libcxx version is too old on the ARM linux runners. Install a newer version with Conda as a band-aid fix. See #14679 for details and to track the long-term fix. Note that this is intentionally done on the release branch, as the issue only affects the jobs using the rc wheels. We'll want to solve it more generally, but the fix needs to be tested here. See the tracking task.
1 parent 473cb07 commit b0462ae

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.ci/scripts/setup-linux.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ else
2323
fi
2424
build_executorch_runner "${BUILD_TOOL}" "${BUILD_MODE}"
2525

26+
# Fix for libcxx version issues with PyTorch prebuilts.
27+
# Tracking in https://github.com/pytorch/executorch/issues/14679.
28+
if [ "$(uname -m)" == "aarch64" ]; then
29+
conda install -y -c conda-forge libstdcxx-ng
30+
fi
31+
2632
if [[ "${GITHUB_BASE_REF:-}" == *main* || "${GITHUB_BASE_REF:-}" == *gh* ]]; then
2733
do_not_use_nightly_on_ci
2834
fi

0 commit comments

Comments
 (0)