Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build_ffmpeg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ffmpeg-version: ["4.4.4", "5.1.4", "6.1.1", "7.0.1"]
ffmpeg-version: ["4.4.4", "5.1.4", "6.1.1", "7.1"]
uses: pytorch/test-infra/.github/workflows/linux_job_v2.yml@main
permissions:
id-token: write
Expand All @@ -52,7 +52,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ffmpeg-version: ["4.4.4", "5.1.4", "6.1.1", "7.0.1"]
ffmpeg-version: ["4.4.4", "5.1.4", "6.1.1", "7.1"]
uses: pytorch/test-infra/.github/workflows/macos_job.yml@main
with:
job-name: Build
Expand All @@ -75,7 +75,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ffmpeg-version: ["4.4.4", "5.1.4", "6.1.1", "7.0.1"]
ffmpeg-version: ["4.4.4", "5.1.4", "6.1.1", "7.1"]
uses: pytorch/test-infra/.github/workflows/windows_job.yml@main
with:
job-name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cpp_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ffmpeg-version-for-tests: ['4.4.2', '5.1.2', '6.1.1', '7.0.1']
ffmpeg-version-for-tests: ['4.4.2', '5.1.2', '6.1.1', '7.1']
steps:
- name: Check out repo
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
- name: Install dependencies and FFmpeg
run: |
python -m pip install --pre torch --index-url https://download.pytorch.org/whl/nightly/cpu
conda install "ffmpeg=7.0.1" pkg-config pybind11 -c conda-forge
conda install "ffmpeg=7.1" pkg-config pybind11 -c conda-forge
ffmpeg -version
- name: Build and install torchcodec
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux_wheel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
fail-fast: false
matrix:
python-version: ['3.10']
ffmpeg-version-for-tests: ['4.4.2', '5.1.2', '6.1.1', '7.0.1']
ffmpeg-version-for-tests: ['4.4.2', '5.1.2', '6.1.1', '7.1']
needs: build
steps:
- uses: actions/download-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reference_resources.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fail-fast: false
matrix:
python-version: ['3.10']
ffmpeg-version-for-tests: ['4.4.2', '5.1.2', '6.1.1', '7.0.1']
ffmpeg-version-for-tests: ['4.4.2', '5.1.2', '6.1.1', '7.1']
steps:
- name: Setup conda env
uses: conda-incubator/setup-miniconda@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows_wheel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
# TODO: FFmpeg 5 on Windows segfaults in avcodec_open2() when passing
# bad parameters.
# See https://github.com/pytorch/torchcodec/pull/806
ffmpeg-version-for-tests: ['4.4.2', '6.1.1', '7.0.1']
ffmpeg-version-for-tests: ['4.4.2', '6.1.1', '7.1']
needs: build
steps:
- uses: actions/download-artifact@v4
Expand Down
Loading