We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 669de85 commit 7e06dc0Copy full SHA for 7e06dc0
.ci/scripts/setup-linux.sh
@@ -16,12 +16,8 @@ read -r BUILD_TOOL BUILD_MODE EDITABLE < <(parse_args "$@")
16
# have already been installed, so we use PyTorch build from source here instead
17
# of nightly. This allows CI to test against latest commits from PyTorch
18
if [[ "${EDITABLE:-false}" == "true" ]]; then
19
- install_executorch --use-pt-pinned-commit --editable
+ install_executorch --editable
20
else
21
- install_executorch --use-pt-pinned-commit
+ install_executorch
22
fi
23
build_executorch_runner "${BUILD_TOOL}" "${BUILD_MODE}"
24
-
25
-if [[ "${GITHUB_BASE_REF:-}" == *main* || "${GITHUB_BASE_REF:-}" == *gh* ]]; then
26
- do_not_use_nightly_on_ci
27
-fi
0 commit comments