Skip to content
Merged
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
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: ['7.0.1']
ffmpeg-version-for-tests: ['7']
steps:
- name: Check out repo
uses: actions/checkout@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux_aarch64_wheel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
fail-fast: false
matrix:
python-version: ['3.10']
ffmpeg-version-for-tests: ['7.0.1']
ffmpeg-version-for-tests: ['7']
needs: build
steps:
- name: Check out repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux_cuda_aarch64_wheel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
matrix:
python-version: ['3.10']
cuda-version: ['12.6']
ffmpeg-version-for-tests: ['4.4.2', '5.1.2', '6.1.1', '7.0.1', '8.0']
ffmpeg-version-for-tests: ['4', '5', '6', '7', '8']
container:
image: "pytorch/manylinuxaarch64-builder:cuda${{ matrix.cuda-version }}"
needs: build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux_cuda_wheel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
# but for releases we should add 12.8.
cuda-version: ['12.6', '13.0']
# TODO: put back ffmpeg 5 https://github.com/pytorch/torchcodec/issues/325
ffmpeg-version-for-tests: ['4.4.2', '6', '7', '8.0']
ffmpeg-version-for-tests: ['4', '6', '7', '8']

container:
image: "pytorch/manylinux2_28-builder:cuda${{ matrix.cuda-version }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linux_wheel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,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', '8.0']
ffmpeg-version-for-tests: ['4', '5', '6', '7', '8']
needs: build
steps:
- name: Check out repo
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
fail-fast: false
matrix:
python-version: ['3.10']
ffmpeg-version-for-tests: ['8.0']
ffmpeg-version-for-tests: ['8']
needs: build
steps:
- name: Check out repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos_wheel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,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', '8.0']
ffmpeg-version-for-tests: ['4', '5', '6', '7', '8']
needs: build
steps:
- name: Check out torchcodec repo
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 @@ -56,7 +56,7 @@ jobs:
# Traditionally we generate the resources locally on FFmpeg 4 or 6.
# The exact version shouln't matter as long as the unit tests pass
# across all version for a given generated resource.
ffmpeg-version-for-tests: ['6.1.1']
ffmpeg-version-for-tests: ['6']
steps:
- name: Check out repo
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows_cuda_wheel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,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', '8.0']
ffmpeg-version-for-tests: ['4', '6', '7', '8']
needs: build
steps:
- name: Setup env vars
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', '8.0']
ffmpeg-version-for-tests: ['4', '6', '7', '8']
needs: build
steps:
- name: Check out repo
Expand Down
2 changes: 1 addition & 1 deletion packaging/update_ci_for_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ for f in "${WHEEL_FILES[@]}"; do
fi
echo "Updating matrix versions in $f ..."
sed -i "s|python-version: \[.*\]|python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']|g" "$f"
sed -i "s|ffmpeg-version-for-tests: \[.*\]|ffmpeg-version-for-tests: ['4.4.2', '5.1.2', '6.1.1', '7.0.1', '8.0']|g" "$f"
sed -i "s|ffmpeg-version-for-tests: \[.*\]|ffmpeg-version-for-tests: ['4', '5', '6', '7', '8']|g" "$f"
sed -i "s|cuda-version: \[.*\]|cuda-version: ['12.6', '13.0', '13.2']|g" "$f"
done

Expand Down
Loading