-
Notifications
You must be signed in to change notification settings - Fork 7.1k
add ffmpeg to Linux CPU and GPU unittest workflows #7295
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -39,7 +39,7 @@ jobs: | |||
fi | |||
|
|||
# Create Conda Env | |||
conda create -yp ci_env python="${PYTHON_VERSION}" numpy libpng jpeg scipy | |||
conda create -yp ci_env python="${PYTHON_VERSION}" numpy libpng jpeg scipy 'ffmpeg<4.3' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See #7296 for why we need the <4.3
pin
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
stamping
Hey @pmeier! You merged this PR, but no labels were added. The list of valid labels is available at https://github.com/pytorch/vision/blob/main/.github/process_commit.py |
Reviewed By: vmoens Differential Revision: D44416636 fbshipit-source-id: a6e58468d2f0d1b093e7468f11d791e137008867
Our current GHA workflows do not build against
ffmpeg
since it is not installed: https://github.com/pytorch/vision/actions/runs/4206146225/jobs/7299225421#step:10:1868However, this was the case before when the workflows ran on CircleCI: https://app.circleci.com/pipelines/github/pytorch/vision/22145/workflows/dda25a3d-9c31-4d81-bc5e-c94fbc8d8566/jobs/1790112?invite=true#step-107-74
We specified it with
vision/.circleci/unittest/linux/scripts/setup_env.sh
Lines 39 to 44 in 474d87b
but something similar is missing from the new GHA workflows. This PR adds it.
cc @seemethere