File tree 1 file changed +5
-1
lines changed 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -107,13 +107,17 @@ jobs:
107
107
export ENV_NAME="conda-env-${{ github.run_id }}"
108
108
export TORCH_ONLY=${{ inputs.torchonly }}
109
109
export INCLUDE_TEST_OPS=${{ inputs.include-test-ops }}
110
+ export USE_ONLY_DL_PYTORCH_ORG=${{ inputs.use-only-dl-pytorch-org }}
110
111
export RELEASE_VERSION=${{ inputs.version }}
111
112
export TARGET_OS="linux"
112
113
eval "$(conda shell.bash hook)"
113
114
printf '%s\n' ${{ toJson(inputs.release-matrix) }} > release_matrix.json
114
115
115
116
# Special case PyPi installation package. And Install of PyPi package via poetry
116
- if [[ ${MATRIX_PACKAGE_TYPE} == "manywheel" && ${MATRIX_GPU_ARCH_VERSION} == "12.1" && ${MATRIX_CHANNEL} == "release" ]]; then
117
+ if [[ ${MATRIX_PACKAGE_TYPE} == "manywheel" && \
118
+ ${MATRIX_GPU_ARCH_VERSION} == "12.1" && \
119
+ ${MATRIX_CHANNEL} == "release" && \
120
+ ${USE_ONLY_DL_PYTORCH_ORG} == "false" ]]; then
117
121
source ./.github/scripts/validate_pipy.sh
118
122
source ./.github/scripts/validate_poetry.sh
119
123
fi
You can’t perform that action at this time.
0 commit comments