Skip to content

Commit ccd0cb5

Browse files
committed
Debug, ffmpeg7 only
1 parent 9ee63e6 commit ccd0cb5

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.github/workflows/linux_cuda_wheel.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ jobs:
6868
python-version: ['3.9']
6969
cuda-version: ['11.8', '12.6', '12.8']
7070
# TODO: put back ffmpeg 5 https://github.com/pytorch/torchcodec/issues/325
71-
ffmpeg-version-for-tests: ['4.4.2', '6', '7']
71+
# ffmpeg-version-for-tests: ['4.4.2', '6', '7']
72+
ffmpeg-version-for-tests: ['7'] # TODO
7273

7374
container:
7475
image: "pytorch/manylinux2_28-builder:cuda${{ matrix.cuda-version }}"

.github/workflows/linux_wheel.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ jobs:
6262
fail-fast: false
6363
matrix:
6464
python-version: ['3.9']
65-
ffmpeg-version-for-tests: ['4.4.2', '5.1.2', '6.1.1', '7.0.1']
65+
# ffmpeg-version-for-tests: ['4.4.2', '5.1.2', '6.1.1', '7.0.1']
66+
ffmpeg-version-for-tests: ['7.0.1'] # TODO
6667
needs: build
6768
steps:
6869
- uses: actions/download-artifact@v4

src/torchcodec/decoders/_core/CMakeLists.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,11 @@ if(DEFINED ENV{BUILD_AGAINST_ALL_FFMPEG_FROM_S3})
7878
)
7979

8080

81-
make_torchcodec_library(libtorchcodec4 ffmpeg4)
81+
# TODO
82+
# make_torchcodec_library(libtorchcodec4 ffmpeg4)
8283
make_torchcodec_library(libtorchcodec7 ffmpeg7)
83-
make_torchcodec_library(libtorchcodec6 ffmpeg6)
84-
make_torchcodec_library(libtorchcodec5 ffmpeg5)
84+
# make_torchcodec_library(libtorchcodec6 ffmpeg6)
85+
# make_torchcodec_library(libtorchcodec5 ffmpeg5)
8586

8687
else()
8788
message(

0 commit comments

Comments
 (0)