-
-
Notifications
You must be signed in to change notification settings - Fork 0
131 lines (109 loc) · 4.24 KB
/
ffmpeg-release.yml
File metadata and controls
131 lines (109 loc) · 4.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
name: FFmpeg library release
on:
workflow_dispatch:
inputs:
version:
description: 'Library version (e.g., 8.0.0.0)'
required: true
push:
tags:
- 'lib-*'
permissions:
pull-requests: write
contents: write
jobs:
ffmpeg-release:
name: Release FFmpeg library for ${{ matrix.os }} ${{ matrix.arch }}
runs-on: ${{ matrix.runner }}
strategy:
matrix:
include:
- os: linux
arch: amd64
runner: ubuntu-24.04
- os: linux
arch: arm64
runner: ubuntu-24.04-arm
- os: darwin
arch: amd64
runner: macos-15-intel
- os: darwin
arch: arm64
runner: macos-latest
fail-fast: false
steps:
- name: Validate version format
if: github.event_name == 'workflow_dispatch'
run: |
if [[ ! "${{ inputs.version }}" =~ ^lib- ]]; then
echo "Error: Version must start with 'lib-' prefix (e.g., 'lib-8.0.0.0')"
exit 1
fi
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: '1.24'
cache: true
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
- uses: Swatinem/rust-cache@v2
with:
cache-bin: false
- uses: taiki-e/cache-cargo-install-action@v2
with:
tool: cargo-c
- name: Install Linux dependencies
if: matrix.os == 'linux'
run: sudo apt-get update && sudo apt-get install -y yasm nasm meson gperf python3
- name: Install macOS dependencies
if: matrix.os == 'darwin'
run: brew update && brew install yasm autoconf ragel meson nasm automake libtool python3
- name: Calculate file hashes
id: file-hashes
run: |
echo "libraries-hash=$(sha256sum internal/builder/libraries.go | cut -d' ' -f1 | head -c 8)" >> $GITHUB_OUTPUT
echo "buildsystems-hash=$(sha256sum internal/builder/buildsystems.go | cut -d' ' -f1 | head -c 8)" >> $GITHUB_OUTPUT
- name: Cache FFmpeg source downloads
uses: actions/cache@v4
with:
path: .build/downloads
# Workaround for GitHub Actions bug: https://github.com/actions/runner-images/issues/13341
# hashFiles() broken on macOS runners as of 2024-11-23, using calculated hash instead
key: ${{ runner.os }}-${{ runner.arch }}-ffmpeg-downloads-${{ matrix.os == 'darwin' && steps.file-hashes.outputs.libraries-hash || hashFiles('internal/builder/libraries.go') }}
restore-keys: |
${{ runner.os }}-${{ runner.arch }}-ffmpeg-downloads-
- name: Cache compiled dependencies
uses: actions/cache@v4
with:
path: |
.build/staging
.build/build
# Workaround for GitHub Actions bug: https://github.com/actions/runner-images/issues/13341
# hashFiles() broken on macOS runners as of 2024-11-23, using calculated hash instead
key: ${{ runner.os }}-${{ runner.arch }}-ffmpeg-deps-${{ matrix.os == 'darwin' && format('{0}-{1}', steps.file-hashes.outputs.libraries-hash, steps.file-hashes.outputs.buildsystems-hash) || hashFiles('internal/builder/libraries.go', 'internal/builder/buildsystems.go') }}
restore-keys: |
${{ runner.os }}-${{ runner.arch }}-ffmpeg-deps-
- name: Clean FFmpeg build
run: go run ./internal/builder/ ffmpeg --clean
- name: Build FFmpeg library
run: go run ./internal/builder/
- name: List built files
run: ls -lh lib/${{ matrix.os }}_${{ matrix.arch }}/
- name: Create tarball
run: |
cd lib
tar -czf ../ffmpeg-${{ matrix.os }}-${{ matrix.arch }}.tar.gz ${{ matrix.os }}_${{ matrix.arch }}/libffmpeg.a
- name: Create Release
uses: softprops/action-gh-release@v2
with:
files: ffmpeg-${{ matrix.os }}-${{ matrix.arch }}.tar.gz
tag_name: ${{ inputs.version }}
body: |
## FFmpeg Static Libraries
**Version:** ${{ inputs.version }}
**Platforms:**
- Linux amd64
- Linux arm64
- macOS x86 (Intel)
- macOS arm64 (Apple Silicon)