Skip to content

Commit

Permalink
Try another ffmpeg ci
Browse files Browse the repository at this point in the history
Signed-off-by: Chocobozzz <me@florianbigard.com>
  • Loading branch information
Chocobozzz committed Jan 13, 2025
1 parent 8cf737f commit 8640753
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
9 changes: 5 additions & 4 deletions .github/actions/reusable-prepare-peertube-run/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ runs:
- name: Setup system dependencies
shell: bash
run: |
sudo apt-get install postgresql-client-common redis-tools parallel libimage-exiftool-perl
wget --quiet --no-check-certificate "https://download.cpy.re/ffmpeg/ffmpeg-release-4.3.1-64bit-static.tar.xz"
tar xf ffmpeg-release-4.3.1-64bit-static.tar.xz
sudo apt-get install postgresql-client-common redis-tools parallel libimage-exiftool-perl ffmpeg
sudo rm /usr/bin/ffmpeg # Use our static version of ffmpeg
wget --quiet --no-check-certificate "https://download.cpy.re/ffmpeg/ffmpeg-release-4.4.1-64bit-static.tar.xz"
tar xf ffmpeg-release-4.4.1-64bit-static.tar.xz
mkdir -p $HOME/bin
cp ffmpeg-*/{ffmpeg,ffprobe} $HOME/bin
cp ffmpeg-4.4.1-amd64-static/ffmpeg $HOME/bin
echo "$HOME/bin" >> $GITHUB_PATH
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,10 @@ jobs:
if: github.event_name == 'schedule' || matrix.test_suite != 'external-plugins'
env:
AKISMET_KEY: ${{ secrets.AKISMET_KEY }}
run: npm run ci -- ${{ matrix.test_suite }}
run: |
ffmpeg -version
ffprobe -version
npm run ci -- ${{ matrix.test_suite }}
- name: Display errors
if: ${{ always() }}
Expand Down

0 comments on commit 8640753

Please sign in to comment.