Skip to content

Commit f2323e0

Browse files
committed
Update
[ghstack-poisoned]
2 parents 22e6d0b + bf91b46 commit f2323e0

File tree

4 files changed

+12
-13
lines changed

4 files changed

+12
-13
lines changed

.ci/pytorch/win-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ if [[ $PYLONG_API_CHECK == 0 ]]; then
4040
fi
4141
set -ex -o pipefail
4242

43-
"$SCRIPT_HELPERS_DIR"/build_pytorch.ps1
43+
"$SCRIPT_HELPERS_DIR"/build_pytorch.bat
4444

4545
assert_git_not_dirty
4646

.ci/pytorch/windows/internal/build_wheels.bat

Lines changed: 0 additions & 11 deletions
This file was deleted.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
& "windows/internal/vc_install_helper.bat"
2+
if ($LASTEXITCODE -ne 0) { exit 1 }
3+
4+
& "windows/internal/cuda_install.bat"
5+
if ($LASTEXITCODE -ne 0) { exit 1 }
6+
7+
& "windows/internal/xpu_install.bat"
8+
if ($LASTEXITCODE -ne 0) { exit 1 }
9+
10+
. "windows/build_pytorch.ps1" $env:CUDA_VERSION $env:PYTORCH_BUILD_VERSION $env:PYTORCH_BUILD_NUMBER

.circleci/scripts/binary_windows_build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ if [[ "$OS" == "windows-arm64" ]]; then
3232
./windows/arm64/build_pytorch.bat
3333
fi
3434
else
35-
./windows/internal/build_wheels.bat
35+
./windows/internal/build_wheels.ps1
3636
fi
3737

3838
echo "Free space on filesystem after build:"

0 commit comments

Comments
 (0)