Skip to content

Commit

Permalink
Disable Python 3.12 validate temporarily
Browse files Browse the repository at this point in the history
Summary: Disabling python 3.12 for validating binaries until Torch elastic issue: https://github.com/pytorch/torchrec/actions/runs/7451087265 is resolved

Differential Revision: D52809181
  • Loading branch information
PaulZhang12 authored and facebook-github-bot committed Jan 16, 2024
1 parent 431fb6c commit 6e147bc
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/scripts/validate_binaries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ if [[ ${MATRIX_GPU_ARCH_TYPE} = 'rocm' ]]; then
exit 0
fi

if [[ ${MATRIX_PYTHON_VERSION} = '3.12' ]]; then
echo "Temporarily disable validation for Python 3.12"
exit 0
fi

if [[ ${MATRIX_GPU_ARCH_TYPE} = 'cuda' ]]; then
export CUDA_VERSION="cu118"
else
Expand Down

0 comments on commit 6e147bc

Please sign in to comment.