From caa02392d3f415d2cd466d6a21f8d2756d8b002e Mon Sep 17 00:00:00 2001 From: Philip Meier Date: Mon, 8 May 2023 21:03:31 +0200 Subject: [PATCH 1/2] remove double doc upload after CloudFront fix (#7516) --- .github/workflows/docs.yml | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index efec5a2c2b5..22ff4ab84b3 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -66,16 +66,3 @@ jobs: if-no-files-found: error path: html s3-prefix: pytorch/vision/${{ github.event.pull_request.number }} - - # The upload below duplicates the upload from above, but to a different path. This is needed since we are in the - # process of changing the path, but want to keep the disruption to a minimum. - # See https://github.com/pytorch/test-infra/issues/3894 - # After a grace period, we can delete this again - - name: Upload docs preview - uses: seemethere/upload-artifact-s3@v5 - with: - retention-days: 14 - s3-bucket: doc-previews - if-no-files-found: error - path: html - s3-prefix: pytorch/pytorch/vision/${{ github.event.pull_request.number }} From e5a1b71d24049f16eaeba66c4d1ec6486afa694e Mon Sep 17 00:00:00 2001 From: Philip Meier Date: Mon, 8 May 2023 22:03:28 +0200 Subject: [PATCH 2/2] moving windows conda / CUDA workarounds to Nova (#7555) --- .github/workflows/test-windows.yml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/workflows/test-windows.yml b/.github/workflows/test-windows.yml index 40c97def8fc..b300a5d0e83 100644 --- a/.github/workflows/test-windows.yml +++ b/.github/workflows/test-windows.yml @@ -30,6 +30,8 @@ jobs: with: repository: pytorch/vision runner: ${{ matrix.runner }} + gpu-arch-type: ${{ matrix.gpu-arch-type }} + gpu-arch-version: ${{ matrix.gpu-arch-version }} timeout: 120 script: | set -euxo pipefail @@ -38,14 +40,4 @@ jobs: export GPU_ARCH_TYPE=${{ matrix.gpu-arch-type }} export GPU_ARCH_VERSION=${{ matrix.gpu-arch-version }} - # TODO: Port this to pytorch/test-infra/.github/workflows/windows_job.yml - export PATH="/c/Jenkins/Miniconda3/Scripts:${PATH}" - - if [[ $GPU_ARCH_TYPE == 'cuda' ]]; then - # TODO: This should be handled by the generic Windows job the same as its done by the generic Linux job - export CUDA_HOME="/c/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v${{ matrix.gpu-arch-version }}" - export CUDA_PATH="${CUDA_HOME}" - export PATH="${CUDA_PATH}/bin:${PATH}" - fi - ./.github/scripts/unittest.sh