From 3d56bba41888d0bec4e2b961c38ec14ee5b5a7af Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Fri, 10 Jan 2025 10:58:44 +0100 Subject: [PATCH] Try another ffmpeg ci --- .github/actions/reusable-prepare-peertube-run/action.yml | 8 +++++--- .github/workflows/test.yml | 5 ++++- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/actions/reusable-prepare-peertube-run/action.yml b/.github/actions/reusable-prepare-peertube-run/action.yml index aa5b897c9ffd..71dd3aeafcab 100644 --- a/.github/actions/reusable-prepare-peertube-run/action.yml +++ b/.github/actions/reusable-prepare-peertube-run/action.yml @@ -9,8 +9,10 @@ runs: 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 + wget --quiet --no-check-certificate "https://download.cpy.re/ffmpeg/ffmpeg-release-4.4.1-64bit-static.tar.xz" + wget --quiet --no-check-certificate "https://download.cpy.re/ffmpeg/ffmpeg-7.0.2-amd64-static/ffprobe" + 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 + cp ffprobe $HOME/bin echo "$HOME/bin" >> $GITHUB_PATH diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4fe94e865507..8ddbab93b1ac 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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() }}