From e3b41742096a9a0b941157dbab1c8dde56522807 Mon Sep 17 00:00:00 2001 From: Gregory James Comer Date: Mon, 25 Aug 2025 16:24:58 -0700 Subject: [PATCH] Update [ghstack-poisoned] --- .github/workflows/build-presets.yml | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/.github/workflows/build-presets.yml b/.github/workflows/build-presets.yml index c4318e3daa5..6f983ba58b6 100644 --- a/.github/workflows/build-presets.yml +++ b/.github/workflows/build-presets.yml @@ -103,30 +103,3 @@ jobs: ./install_requirements.sh > /dev/null cmake --preset ${{ matrix.preset }} cmake --build cmake-out -j$(( $(nproc) - 1 )) - - windows: - uses: pytorch/test-infra/.github/workflows/windows_job.yml@main - strategy: - fail-fast: false - matrix: - preset: [pybind] - with: - job-name: build - ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} - submodules: recursive - timeout: 90 - script: | - set -eux - conda init powershell - powershell -Command "& { - \$ErrorActionPreference = 'Stop' - Set-PSDebug -Trace 1 - - conda create --yes --quiet -n et python=3.12 - conda activate et - - python install_requirements.py - cmake --preset ${{ matrix.preset }} - \$numCores = [System.Environment]::GetEnvironmentVariable('NUMBER_OF_PROCESSORS') - 1 - cmake --build cmake-out -j \$numCores - }"