From 276e79d091cc90750a2300a4ef6e2e2a59aa7b6c Mon Sep 17 00:00:00 2001 From: Daniel Flores Date: Wed, 1 Oct 2025 09:44:57 -0400 Subject: [PATCH 1/2] update runners to meta-pytorch --- .github/workflows/build_ffmpeg.yaml | 6 +++--- .github/workflows/docs.yaml | 2 +- .github/workflows/linux_cuda_wheel.yaml | 2 +- .github/workflows/linux_wheel.yaml | 2 +- .github/workflows/macos_wheel.yaml | 2 +- .github/workflows/windows_wheel.yaml | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build_ffmpeg.yaml b/.github/workflows/build_ffmpeg.yaml index 4d6a22869..79f0e6493 100644 --- a/.github/workflows/build_ffmpeg.yaml +++ b/.github/workflows/build_ffmpeg.yaml @@ -35,7 +35,7 @@ jobs: with: job-name: Build upload-artifact: ffmpeg-lgpl-linux_x86_64-${{ matrix.ffmpeg-version }} - repository: pytorch/torchcodec + repository: meta-pytorch/torchcodec script: | export FFMPEG_VERSION="${{ matrix.ffmpeg-version }}" export FFMPEG_ROOT="${PWD}/ffmpeg" @@ -57,7 +57,7 @@ jobs: with: job-name: Build upload-artifact: ffmpeg-lgpl-macos-${{ matrix.ffmpeg-version }} - repository: pytorch/torchcodec + repository: meta-pytorch/torchcodec runner: macos-14-xlarge script: | export FFMPEG_VERSION="${{ matrix.ffmpeg-version }}" @@ -80,7 +80,7 @@ jobs: with: job-name: Build upload-artifact: ffmpeg-lgpl-windows_x86_64-${{ matrix.ffmpeg-version }} - repository: pytorch/torchcodec + repository: meta-pytorch/torchcodec script: | export FFMPEG_VERSION="${{ matrix.ffmpeg-version }}" export FFMPEG_ROOT="${PWD}/ffmpeg" diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 7d580cef3..7737d6f4c 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -33,7 +33,7 @@ jobs: name: Build and Upload wheel uses: pytorch/test-infra/.github/workflows/build_wheels_linux.yml@main with: - repository: pytorch/torchcodec + repository: meta-pytorch/torchcodec ref: "" test-infra-repository: pytorch/test-infra test-infra-ref: main diff --git a/.github/workflows/linux_cuda_wheel.yaml b/.github/workflows/linux_cuda_wheel.yaml index d10c65d5f..7d7d12eab 100644 --- a/.github/workflows/linux_cuda_wheel.yaml +++ b/.github/workflows/linux_cuda_wheel.yaml @@ -43,7 +43,7 @@ jobs: name: Build and Upload wheel uses: pytorch/test-infra/.github/workflows/build_wheels_linux.yml@main with: - repository: pytorch/torchcodec + repository: meta-pytorch/torchcodec ref: "" test-infra-repository: pytorch/test-infra test-infra-ref: main diff --git a/.github/workflows/linux_wheel.yaml b/.github/workflows/linux_wheel.yaml index 8f9acba0b..9e3fd9a24 100644 --- a/.github/workflows/linux_wheel.yaml +++ b/.github/workflows/linux_wheel.yaml @@ -44,7 +44,7 @@ jobs: name: Build and Upload Linux wheel uses: pytorch/test-infra/.github/workflows/build_wheels_linux.yml@main with: - repository: pytorch/torchcodec + repository: meta-pytorch/torchcodec ref: "" test-infra-repository: pytorch/test-infra test-infra-ref: main diff --git a/.github/workflows/macos_wheel.yaml b/.github/workflows/macos_wheel.yaml index 34915e830..3f466b26f 100644 --- a/.github/workflows/macos_wheel.yaml +++ b/.github/workflows/macos_wheel.yaml @@ -44,7 +44,7 @@ jobs: name: Build and Upload Mac wheel uses: pytorch/test-infra/.github/workflows/build_wheels_macos.yml@main with: - repository: pytorch/torchcodec + repository: meta-pytorch/torchcodec ref: "" test-infra-repository: pytorch/test-infra test-infra-ref: main diff --git a/.github/workflows/windows_wheel.yaml b/.github/workflows/windows_wheel.yaml index 2cefc2a9f..b4a939620 100644 --- a/.github/workflows/windows_wheel.yaml +++ b/.github/workflows/windows_wheel.yaml @@ -46,7 +46,7 @@ jobs: name: Build and Upload Windows wheel uses: pytorch/test-infra/.github/workflows/build_wheels_windows.yml@main with: - repository: pytorch/torchcodec + repository: meta-pytorch/torchcodec ref: "" test-infra-repository: pytorch/test-infra test-infra-ref: main From 82759402c3a1eebd9283a43ca3493541a1a462c0 Mon Sep 17 00:00:00 2001 From: Daniel Flores Date: Wed, 1 Oct 2025 10:08:29 -0400 Subject: [PATCH 2/2] update artifact names --- .github/workflows/docs.yaml | 2 +- .github/workflows/linux_cuda_wheel.yaml | 2 +- .github/workflows/linux_wheel.yaml | 2 +- .github/workflows/macos_wheel.yaml | 2 +- .github/workflows/windows_wheel.yaml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 7737d6f4c..0829246e0 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -70,7 +70,7 @@ jobs: echo python_version_without_periods=${python_version_without_periods} >> $GITHUB_ENV - uses: actions/download-artifact@v4 with: - name: pytorch_torchcodec__${{ matrix.python-version }}_cu${{ env.cuda_version_without_periods }}_x86_64 + name: meta-pytorch_torchcodec__${{ matrix.python-version }}_cu${{ env.cuda_version_without_periods }}_x86_64 path: pytorch/torchcodec/dist/ - name: Setup miniconda using test-infra uses: pytorch/test-infra/.github/actions/setup-miniconda@main diff --git a/.github/workflows/linux_cuda_wheel.yaml b/.github/workflows/linux_cuda_wheel.yaml index 7d7d12eab..f1801c0f6 100644 --- a/.github/workflows/linux_cuda_wheel.yaml +++ b/.github/workflows/linux_cuda_wheel.yaml @@ -86,7 +86,7 @@ jobs: echo python_version_without_periods=${python_version_without_periods} >> $GITHUB_ENV - uses: actions/download-artifact@v4 with: - name: pytorch_torchcodec__${{ matrix.python-version }}_cu${{ env.cuda_version_without_periods }}_x86_64 + name: meta-pytorch_torchcodec__${{ matrix.python-version }}_cu${{ env.cuda_version_without_periods }}_x86_64 path: pytorch/torchcodec/dist/ - name: Setup miniconda using test-infra uses: pytorch/test-infra/.github/actions/setup-miniconda@main diff --git a/.github/workflows/linux_wheel.yaml b/.github/workflows/linux_wheel.yaml index 9e3fd9a24..020068269 100644 --- a/.github/workflows/linux_wheel.yaml +++ b/.github/workflows/linux_wheel.yaml @@ -68,7 +68,7 @@ jobs: steps: - uses: actions/download-artifact@v4 with: - name: pytorch_torchcodec__${{ matrix.python-version }}_cpu_x86_64 + name: meta-pytorch_torchcodec__${{ matrix.python-version }}_cpu_x86_64 path: pytorch/torchcodec/dist/ - name: Setup conda env uses: conda-incubator/setup-miniconda@v2 diff --git a/.github/workflows/macos_wheel.yaml b/.github/workflows/macos_wheel.yaml index 3f466b26f..8392aec99 100644 --- a/.github/workflows/macos_wheel.yaml +++ b/.github/workflows/macos_wheel.yaml @@ -71,7 +71,7 @@ jobs: - name: Download wheel uses: actions/download-artifact@v4 with: - name: pytorch_torchcodec__${{ matrix.python-version }}_cpu_ + name: meta-pytorch_torchcodec__${{ matrix.python-version }}_cpu_ path: pytorch/torchcodec/dist/ - name: Setup conda env diff --git a/.github/workflows/windows_wheel.yaml b/.github/workflows/windows_wheel.yaml index b4a939620..b5b3fc4ac 100644 --- a/.github/workflows/windows_wheel.yaml +++ b/.github/workflows/windows_wheel.yaml @@ -76,7 +76,7 @@ jobs: steps: - uses: actions/download-artifact@v4 with: - name: pytorch_torchcodec__${{ matrix.python-version }}_cpu_x64 + name: meta-pytorch_torchcodec__${{ matrix.python-version }}_cpu_x64 path: pytorch/torchcodec/dist/ - name: Setup conda env uses: conda-incubator/setup-miniconda@v2