-
Notifications
You must be signed in to change notification settings - Fork 7
73 lines (71 loc) · 3.51 KB
/
all.yml
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
on:
# push:
# branches: [master]
workflow_dispatch:
pull_request:
branches: [master]
name: Create all library Release
jobs:
build:
name: compile all lib then deploy
runs-on: macos-14
env:
GH_TOKEN: ${{ github.token }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: One Step
run: |
echo '------compile yuv------------------------------------'
.github/workflows/onestep.sh yuv all
echo '------compile soundtouch------------------------------------'
rm -rf build || git reset --hard || git pull origin
.github/workflows/onestep.sh soundtouch all
echo '------compile unibreak------------------------------------'
rm -rf build || git reset --hard || git pull origin
.github/workflows/onestep.sh unibreak all
echo '------compile fribidi------------------------------------'
rm -rf build || git reset --hard || git pull origin
.github/workflows/onestep.sh fribidi all
echo '------compile freetype------------------------------------'
rm -rf build || git reset --hard || git pull origin
.github/workflows/onestep.sh freetype all
echo '------compile harfbuzz------------------------------------'
rm -rf build || git reset --hard || git pull origin
./main.sh install -p ios -l 'freetype'
./main.sh install -p tvos -l 'freetype'
./main.sh install -p macos -l 'freetype'
.github/workflows/onestep.sh harfbuzz all
echo '------compile ass------------------------------------'
rm -rf build || git reset --hard || git pull origin
./main.sh install -p ios -l 'harfbuzz fribidi unibreak'
./main.sh install -p tvos -l 'harfbuzz fribidi unibreak'
./main.sh install -p macos -l 'harfbuzz fribidi unibreak'
.github/workflows/onestep.sh ass all
echo '------compile opus------------------------------------'
rm -rf build || git reset --hard || git pull origin
.github/workflows/onestep.sh opus all
echo '------compile openssl------------------------------------'
rm -rf build || git reset --hard || git pull origin
.github/workflows/onestep.sh openssl all
echo '------compile dvdread------------------------------------'
rm -rf build || git reset --hard || git pull origin
.github/workflows/onestep.sh dvdread all
echo '------compile bluray------------------------------------'
rm -rf build || git reset --hard || git pull origin
.github/workflows/onestep.sh bluray all
echo '------compile dav1d------------------------------------'
rm -rf build || git reset --hard || git pull origin
.github/workflows/onestep.sh dav1d all
echo '------compile uavs3d------------------------------------'
rm -rf build || git reset --hard || git pull origin
.github/workflows/onestep.sh uavs3d all
echo '------compile smb2------------------------------------'
rm -rf build || git reset --hard || git pull origin
.github/workflows/onestep.sh smb2 all
echo '------compile ffmpeg------------------------------------'
rm -rf build || git reset --hard || git pull origin
./main.sh install -p ios -l 'openssl opus dav1d dvdread uavs3d smb2 bluray'
./main.sh install -p tvos -l 'openssl opus dav1d dvdread uavs3d smb2 bluray'
./main.sh install -p macos -l 'openssl opus dav1d dvdread uavs3d smb2 bluray'
.github/workflows/onestep.sh ffmpeg all