This repository was archived by the owner on Aug 15, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 54
54
${PWD} /check_binary.sh
55
55
fi
56
56
57
+ # We are only interested in CUDA tests and Python 3.8-3.11. Not all requirement libraries are available for 3.12 yet.
58
+ if [[ ${INCLUDE_TEST_OPS:- } == ' true' && ${MATRIX_GPU_ARCH_TYPE} == ' cuda' && ${MATRIX_PYTHON_VERSION} != " 3.12" ]]; then
59
+ source ./.github/scripts/validate_test_ops.sh
60
+ fi
61
+
57
62
if [[ ${TARGET_OS} == ' windows' ]]; then
58
63
python ./test/smoke_test/smoke_test.py ${TEST_SUFFIX}
59
64
else
64
69
export PATH=${OLD_PATH}
65
70
fi
66
71
67
- # We are only interested in CUDA tests and Python 3.8-3.11. Not all requirement libraries are available for 3.12 yet.
68
- if [[ ${INCLUDE_TEST_OPS:- } == ' true' && ${MATRIX_GPU_ARCH_TYPE} == ' cuda' && ${MATRIX_PYTHON_VERSION} != " 3.12" ]]; then
69
- source ./.github/scripts/validate_test_ops.sh
70
- fi
71
-
72
- # TODO: remove if statement currently this step is timing out on linx-aarch64
73
- if [[ ${TARGET_OS} != ' linux-aarch64' ]]; then
72
+ # this is optional step
73
+ if [[ ${TARGET_OS} != linux* ]]; then
74
74
conda deactivate
75
75
conda env remove -n ${ENV_NAME}
76
76
fi
You can’t perform that action at this time.
0 commit comments