Skip to content

Commit 4170352

Browse files
committed
add checks on installed FFmpeg and FFprobe versions
1 parent 66d841f commit 4170352

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/unit-test.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ jobs:
2323
- name: Checkout code changes
2424
uses: actions/checkout@v6
2525

26-
- name: Install FFmpeg
26+
- name: Install FFmpeg and FFprobe
2727
shell: bash
2828
run: |
2929
set -euo pipefail
30-
# bump: ffmpeg-ci /ffmpeg-version: '([\d.]+)'/ docker:mwader/static-ffmpeg|~8.0
30+
# bump: ffmpeg-ci /ffmpeg-version: '([\d.]+)'/ docker:mwader/static-ffmpeg
3131
FF_VERSION="8.0.1"
3232
INSTALL_DIR="$HOME/ffmpeg"
3333
mkdir -p "$INSTALL_DIR"
@@ -57,6 +57,11 @@ jobs:
5757
5858
echo "$INSTALL_DIR" >> "$GITHUB_PATH"
5959
60+
ffmpeg -version
61+
ffprobe -version
62+
63+
echo "Installed FFmpeg and FFprobe $FF_VERSION"
64+
6065
- name: Setup Java
6166
uses: actions/setup-java@v5
6267
with:

0 commit comments

Comments
 (0)