Try another ffmpeg ci

Signed-off-by: Chocobozzz <me@florianbigard.com>
This commit is contained in:
Chocobozzz 2025-01-10 10:58:44 +01:00
parent 8cf737fc31
commit c84a5e70c2
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 9 additions and 5 deletions

View File

@ -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 nscd
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

View File

@ -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() }}