Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .ci/scripts/setup-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ else
fi
build_executorch_runner "${BUILD_TOOL}" "${BUILD_MODE}"

# Fix for libcxx version issues with PyTorch prebuilts.
# Tracking in https://github.com/pytorch/executorch/issues/14679.
if [ "$(uname -m)" == "aarch64" ]; then
conda install -y -c conda-forge libstdcxx-ng
fi

if [[ "${GITHUB_BASE_REF:-}" == *main* || "${GITHUB_BASE_REF:-}" == *gh* ]]; then
do_not_use_nightly_on_ci
fi
Loading