Skip to content

Commit

Permalink
ci: fix ffmpeg download URL in test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bajankristof committed Apr 26, 2024
1 parent be62536 commit 4526919
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
ruby-version: ['2.6', '2.7', '3.0']
ffmpeg-version: ['6.0.1', '5.1.1', '4.4.1', '3.4.2']
ffmpeg-version: ['6.0.1', '5.1.1', '4.4.1']

steps:
- uses: actions/checkout@v4
Expand All @@ -29,7 +29,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y wget
wget https://johnvansickle.com/ffmpeg/releases/ffmpeg-${{ matrix.ffmpeg-version }}-amd64-static.tar.xz
wget https://johnvansickle.com/ffmpeg/old-releases/ffmpeg-${{ matrix.ffmpeg-version }}-amd64-static.tar.xz
tar -xf ffmpeg-${{ matrix.ffmpeg-version }}-amd64-static.tar.xz
sudo mv ffmpeg-${{ matrix.ffmpeg-version }}-amd64-static/ffmpeg /usr/local/bin/ffmpeg
sudo mv ffmpeg-${{ matrix.ffmpeg-version }}-amd64-static/ffprobe /usr/local/bin/ffprobe
Expand Down

0 comments on commit 4526919

Please sign in to comment.