Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci!: rename ffmpeg builds #326

Merged
merged 1 commit into from
May 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 14 additions & 8 deletions .github/workflows/build-ffmpeg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,16 @@ concurrency:

jobs:
ffmpeg:
name: ffmpeg-${{ matrix.os_type }}-${{ matrix.arch }}
name: ffmpeg (${{ matrix.name }})
# https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu
# https://trac.ffmpeg.org/wiki/CompilationGuide/macOS
# https://trac.ffmpeg.org/wiki/CompilationGuide/MinGW
strategy:
fail-fast: false # false to test all, true to fail entire job if any fail
matrix:
include:
- os_type: linux
- name: Linux-x86_64 # ${CMAKE_SYSTEM_NAME}-${CMAKE_SYSTEM_PROCESSOR}
os_type: linux
os: ubuntu-20.04 # pinned until all platforms moved to 22.04
arch: x86_64
shell: bash
Expand All @@ -40,7 +41,8 @@ jobs:
--enable-nvenc
--enable-v4l2_m2m
--enable-vaapi
- os_type: linux
- name: Linux-aarch64
os_type: linux
os: ubuntu-20.04 # pinned until all platforms moved to 22.04
arch: aarch64
shell: bash
Expand All @@ -58,7 +60,8 @@ jobs:
--enable-nvenc
--enable-v4l2_m2m
--enable-vaapi
- os_type: linux
- name: Linux-ppc64le
os_type: linux
os: ubuntu-20.04 # pinned until all platforms moved to 22.04
arch: powerpc64le
shell: bash
Expand All @@ -76,15 +79,17 @@ jobs:
--enable-nvenc
--enable-v4l2_m2m
--enable-vaapi
- os_type: macos
- name: Darwin-x86_64
os_type: macos
os: macos-11
arch: x86_64
shell: bash
cmake_generator: Unix Makefiles # should be `Xcode` but that fails
ffmpeg_extras: >-
--enable-encoder=h264_videotoolbox,hevc_videotoolbox
--enable-videotoolbox
- os_type: macos
- name: Darwin-arm64
os_type: macos
os: macos-11
arch: aarch64
shell: bash
Expand All @@ -93,7 +98,8 @@ jobs:
ffmpeg_extras: >-
--enable-encoder=h264_videotoolbox,hevc_videotoolbox
--enable-videotoolbox
- os_type: windows
- name: Windows-AMD64
os_type: windows
os: windows-2022
arch: x86_64
shell: msys2 {0}
Expand Down Expand Up @@ -630,7 +636,7 @@ jobs:
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: "${{ matrix.os_type }}-${{ matrix.arch }}"
name: ${{ matrix.name }}
path: ./ffmpeg_build/

update_dist:
Expand Down