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 28d9ac9 commit 8073473Copy full SHA for 8073473
.github/workflows/validate-linux-binaries.yml
@@ -62,8 +62,8 @@ jobs:
62
63
# Special case PyPi installation package. And Install of PyPi package via poetry
64
if [[ ${MATRIX_PACKAGE_TYPE} == "manywheel" ]] && \
65
- {[${MATRIX_GPU_ARCH_VERSION} == "12.1" && ${MATRIX_CHANNEL} != "release"] || \
66
- [${MATRIX_GPU_ARCH_VERSION} == "11.7" && ${MATRIX_CHANNEL} == "release"]}; then
+ {[[ ${MATRIX_GPU_ARCH_VERSION} == "12.1" && ${MATRIX_CHANNEL} != "release"]] || \
+ [[ ${MATRIX_GPU_ARCH_VERSION} == "11.7" && ${MATRIX_CHANNEL} == "release"]]}; then
67
echo "Executing pipy and poetry tests"
68
source ./.github/scripts/validate_pipy.sh
69
source ./.github/scripts/validate_poetry.sh
0 commit comments