Skip to content

Commit

Permalink
[validations] Fix use case if INCLUDE_TEST_OPS is not set (#1660)
Browse files Browse the repository at this point in the history
  • Loading branch information
atalman committed Dec 29, 2023
1 parent 58b0295 commit f2efe21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/validate_binaries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ else
fi

# We are only interested in CUDA tests and Python 3.8-3.11. Not all requirement libraries are available for 3.12 yet.
if [[ ${INCLUDE_TEST_OPS} == 'true' && ${MATRIX_GPU_ARCH_TYPE} == 'cuda' && ${MATRIX_PYTHON_VERSION} != "3.12" ]]; then
if [[ ${INCLUDE_TEST_OPS:-} == 'true' && ${MATRIX_GPU_ARCH_TYPE} == 'cuda' && ${MATRIX_PYTHON_VERSION} != "3.12" ]]; then
source ./.github/scripts/validate_test_ops.sh
fi

Expand Down

0 comments on commit f2efe21

Please sign in to comment.