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 f50bd85 commit 8b39596Copy full SHA for 8b39596
.github/workflows/validate-linux-binaries.yml
@@ -67,5 +67,14 @@ jobs:
67
export TARGET_OS="linux"
68
eval "$(conda shell.bash hook)"
69
70
+ # Special case PyPi installation package. And Install of PyPi package via poetry
71
+ if [[ ${MATRIX_PACKAGE_TYPE} == "manywheel" ]] && \
72
+ ([[ ${MATRIX_GPU_ARCH_VERSION} == "12.1" && ${MATRIX_CHANNEL} != "release" ]] || \
73
+ [[ ${MATRIX_GPU_ARCH_VERSION} == "11.7" && ${MATRIX_CHANNEL} == "release" ]]); then
74
+ source ./.github/scripts/validate_pipy.sh --runtime-error-check disabled
75
+ # temporary disable poetry check
76
+ # source ./.github/scripts/validate_poetry.sh --runtime-error-check disabled
77
+ fi
78
+
79
# Standart case: Validate binaries
80
source ./.github/scripts/validate_binaries.sh
0 commit comments