Skip to content

Commit

Permalink
Remove conda install for aarch64 validation (pytorch#1757)
Browse files Browse the repository at this point in the history
* Remove conda install for aarch64

* test

* Revert "test"

This reverts commit 6add257.

* fix_aarch64

* Increase timeout for aarch64 jobs

* test
  • Loading branch information
atalman committed Mar 27, 2024
1 parent 89699bc commit 06967bc
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/scripts/validate_binaries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ else

if [[ ${TARGET_OS} == 'macos-arm64' ]]; then
conda update -y -n base -c defaults conda
else
elif [[ ${TARGET_OS} != 'linux-aarch64' ]]; then
# Conda pinned see issue: https://github.com/ContinuumIO/anaconda-issues/issues/13350
conda install -y conda=23.11.0
fi
Expand Down Expand Up @@ -69,6 +69,10 @@ else
source ./.github/scripts/validate_test_ops.sh
fi

conda deactivate
conda env remove -n ${ENV_NAME}
# TODO: remove if statement currently this step is timing out on linx-aarch64
if [[ ${TARGET_OS} != 'linux-aarch64' ]]; then
conda deactivate
conda env remove -n ${ENV_NAME}
fi

fi

0 comments on commit 06967bc

Please sign in to comment.