We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df5df2c commit 8bdfcbfCopy full SHA for 8bdfcbf
.github/workflows/validate-linux-binaries.yml
@@ -57,9 +57,9 @@ jobs:
57
eval "$(conda shell.bash hook)"
58
59
# 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
+ if [ ${MATRIX_PACKAGE_TYPE} == "manywheel" ] && \
+ [ (${MATRIX_GPU_ARCH_VERSION} == "12.1" && ${MATRIX_CHANNEL} != "release") || \
+ (${MATRIX_GPU_ARCH_VERSION} == "11.7" && ${MATRIX_CHANNEL} == "release") ]; then
63
source ./.github/scripts/validate_pipy.sh
64
source ./.github/scripts/validate_poetry.sh
65
fi
0 commit comments