Skip to content

Commit 8bdfcbf

Browse files
committed
test
1 parent df5df2c commit 8bdfcbf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/validate-linux-binaries.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ jobs:
5757
eval "$(conda shell.bash hook)"
5858
5959
# Special case PyPi installation package. And Install of PyPi package via poetry
60-
if [[ ${MATRIX_PACKAGE_TYPE} == "manywheel" ]] && \
61-
[[ ${MATRIX_GPU_ARCH_VERSION} == "12.1" && ${MATRIX_CHANNEL} != "release" ] || \
62-
[ ${MATRIX_GPU_ARCH_VERSION} == "11.7" && ${MATRIX_CHANNEL} == "release" ]]; then
60+
if [ ${MATRIX_PACKAGE_TYPE} == "manywheel" ] && \
61+
[ (${MATRIX_GPU_ARCH_VERSION} == "12.1" && ${MATRIX_CHANNEL} != "release") || \
62+
(${MATRIX_GPU_ARCH_VERSION} == "11.7" && ${MATRIX_CHANNEL} == "release") ]; then
6363
source ./.github/scripts/validate_pipy.sh
6464
source ./.github/scripts/validate_poetry.sh
6565
fi

0 commit comments

Comments
 (0)