Skip to content
This repository was archived by the owner on Aug 15, 2025. It is now read-only.

Commit 06967bc

Browse files
authored
Remove conda install for aarch64 validation (#1757)
* Remove conda install for aarch64 * test * Revert "test" This reverts commit 6add257. * fix_aarch64 * Increase timeout for aarch64 jobs * test
1 parent 89699bc commit 06967bc

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/scripts/validate_binaries.sh

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ else
55

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

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

0 commit comments

Comments
 (0)