Skip to content

Commit

Permalink
Disable Python 3.12 validate temporarily (pytorch#1633)
Browse files Browse the repository at this point in the history
Summary:

Disabling python 3.12 for validating binaries until Torch elastic issue: pytorch/pytorch#116423 is resolved

Reviewed By: henrylhtsang

Differential Revision: D52809181
  • Loading branch information
PaulZhang12 authored and facebook-github-bot committed Jan 16, 2024
1 parent 431fb6c commit 8e0f620
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 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
4 changes: 0 additions & 4 deletions .github/workflows/validate-nightly-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ on:
- .github/workflows/validate-binaries.yml
- .github/scripts/validate-binaries.sh
pull_request:
paths:
- .github/workflows/validate-nightly-binaries.yml
- .github/workflows/validate-binaries.yml
- .github/scripts/validate-binaries.sh
jobs:
nightly:
uses: ./.github/workflows/validate-binaries.yml
Expand Down

0 comments on commit 8e0f620

Please sign in to comment.