Skip to content

Commit 47c07d0

Browse files
committed
Try fixing arm llama-runner jobs
1 parent 3854f4b commit 47c07d0

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
@@ -13,6 +13,12 @@ source "$(dirname "${BASH_SOURCE[0]}")/utils.sh"
1313
read -r BUILD_TOOL BUILD_MODE EDITABLE < <(parse_args "$@")
1414
echo "Build tool: $BUILD_TOOL, Mode: $BUILD_MODE"
1515

16+
# Fix for libcxx version issues with PyTorch prebuilts.
17+
# Tracking in https://github.com/pytorch/executorch/issues/14679.
18+
if [ "$(uname -m)" != "aarch64" ]; then
19+
conda install -c conda-forge libstdcxx-ng
20+
fi
21+
1622
# As Linux job is running inside a Docker container, all of its dependencies
1723
# have already been installed, so we use PyTorch build from source here instead
1824
# of nightly. This allows CI to test against latest commits from PyTorch

0 commit comments

Comments
 (0)