-
Notifications
You must be signed in to change notification settings - Fork 60
272 lines (238 loc) · 8.69 KB
/
main.yaml
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
linux:
strategy:
matrix:
compiler: ['gcc-9']
qt_version: ["5.15.2", "6.6.2"]
include:
- compiler: gcc-9
packages: gcc-9 g++-9
env: { 'CC': 'gcc-9', 'CXX': 'g++-9' }
- qt_version: "6.6.2"
qt_modules: "qtmultimedia"
qt_packages: "libxkbcommon-dev libgstreamer-plugins-base1.0-0 libgstreamer-gl1.0-0"
runs-on: ubuntu-latest
env: ${{ matrix.env }}
steps:
- uses: actions/checkout@v3
- name: Install compiler and FFmpeg dependencies
run: |
sudo apt-get update &&
sudo apt-get install -y ${{ matrix.packages }} ${{ matrix.qt_packages }} \
libavcodec-dev \
libavformat-dev \
libavdevice-dev \
libavfilter-dev \
libavformat-dev \
libavutil-dev \
libswresample-dev \
libswscale-dev \
libva-x11-2 \
libva-drm2
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: ${{ matrix.qt_version }}
modules: ${{ matrix.qt_modules }}
- name: QMake Test
run: |
export QT_LOGGING_RULES="qt.QtAVPlayer.debug=true"
cd tests/auto/integration/qavdemuxer
qmake
make CC=$CC CXX=$CXX
./tst_qavdemuxer
cd ../qavplayer
qmake
make CC=$CC CXX=$CXX
./tst_qavplayer --platform minimal -maxwarnings 100000
- name: QMake Examples
run: |
cd examples/qml_video
qmake
make CC=$CC CXX=$CXX
cd ../extract_frames
qmake
make CC=$CC CXX=$CXX
- name: CMake Examples
run: |
cd examples/qml_video
cmake . -DQT_AVPLAYER_MULTIMEDIA=ON
make CC=$CC CXX=$CXX CXXFLAGS='-std=c++17' VERBOSE=1
cd ../widget_video
cmake . -DQT_AVPLAYER_MULTIMEDIA=ON
make CC=$CC CXX=$CXX CXXFLAGS='-std=c++17' VERBOSE=1
macos:
strategy:
matrix:
compiler: ['clang-9']
include:
- compiler: clang-9
packages: llvm@13
env: { 'CC': 'clang', 'CXX': 'clang++', 'CXXFLAGS': '-DNS_FORMAT_ARGUMENT\(A\)= -fapplication-extension -std=c++17' }
runs-on: macos-latest
env: ${{ matrix.env }}
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
brew install ${{ matrix.packages }} ffmpeg qt@5
- name: Set environment path
run: |
brew --prefix ffmpeg
brew --prefix qt@5
echo `brew --prefix qt@5`/bin >> $GITHUB_PATH
echo "/usr/local/opt/llvm@9/bin" >> $GITHUB_PATH
- name: QMake Test
run: |
export FFMPEG=`brew --prefix ffmpeg`
ls -l $FFMPEG
export QT_LOGGING_RULES="qt.QtAVPlayer.debug=true"
cd tests/auto/integration/qavdemuxer
qmake INCLUDEPATH+="$FFMPEG/include" LIBS="-L$FFMPEG/lib"
make CC=$CC CXX=$CXX
tst_qavdemuxer.app/Contents/MacOS/tst_qavdemuxer
cd ../qavplayer
qmake INCLUDEPATH+="$FFMPEG/include" LIBS="-L$FFMPEG/lib"
make CC=$CC CXX=$CXX
tst_qavplayer.app/Contents/MacOS/tst_qavplayer --platform minimal -maxwarnings 100000
- name: QMake Examples
run: |
export FFMPEG=`brew --prefix ffmpeg`
cd examples/qml_video
qmake INCLUDEPATH+="$FFMPEG/include" LIBS+="-L$FFMPEG/lib"
make CC=$CC CXX=$CXX
cd ../extract_frames
qmake INCLUDEPATH+="$FFMPEG/include" LIBS+="-L$FFMPEG/lib"
make CC=$CC CXX=$CXX
- name: CMake Examples
run: |
export FFMPEG=`brew --prefix ffmpeg`
cd examples/qml_video
cmake . -DQT_AVPLAYER_MULTIMEDIA=ON -DCMAKE_CXX_STANDARD_INCLUDE_DIRECTORIES=$FFMPEG/include -DCMAKE_LIBRARY_PATH=$FFMPEG/lib
make CC=$CC CXX=$CXX CXXFLAGS='-std=c++17' VERBOSE=1
cd ../widget_video
cmake . -DQT_AVPLAYER_MULTIMEDIA=ON -DCMAKE_CXX_STANDARD_INCLUDE_DIRECTORIES=$FFMPEG/include -DCMAKE_LIBRARY_PATH=$FFMPEG/lib
make CC=$CC CXX=$CXX CXXFLAGS='-std=c++17' VERBOSE=1
windows:
strategy:
matrix:
qt_version: ["5.15.2", "6.6.2"]
type: ["MSVC", "MINGW"]
include:
- qt_version: "6.6.2"
qt_modules: "qtmultimedia"
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Init vs environment
if: ${{ matrix.type == 'MSVC' }}
uses: egor-tensin/vs-shell@v2
with:
arch: x64
- name: Install wget & unzip
run: |
choco install wget unzip xidel
- name: Install Qt
if: ${{ matrix.type == 'MINGW' && matrix.qt_version == '5.15.2' }}
uses: jurplel/install-qt-action@v3
with:
arch: win64_mingw81
version: ${{ matrix.qt_version }}
- name: Install Qt
if: ${{ matrix.type == 'MINGW' && matrix.qt_version == '6.6.2' }}
uses: jurplel/install-qt-action@v3
with:
arch: win64_mingw
version: ${{ matrix.qt_version }}
modules: ${{ matrix.qt_modules }}
- name: Install Qt
if: ${{ matrix.type == 'MSVC' }}
uses: jurplel/install-qt-action@v3
with:
version: ${{ matrix.qt_version }}
modules: ${{ matrix.qt_modules }}
- name: Install FFmpeg
shell: cmd
run: |
cd ..
xidel https://github.com/BtbN/FFmpeg-Builds/releases -e "//a[contains(@href, '-gpl-shared.zip')]/@href[1]" --silent > ffmpeg.url
xidel https://github.com/BtbN/FFmpeg-Builds/releases -e "(//a[contains(@href, '-gpl-shared.zip')])[1]/substring(., 0, string-length(.) - 3)" --silent > ffmpeg.name
set /P FFMPEG_URL=< ffmpeg.url
set /P FFMPEG_NAME=< ffmpeg.name
wget https://github.com%FFMPEG_URL%
unzip %FFMPEG_NAME%.zip
ren %FFMPEG_NAME% ffmpeg
dir ffmpeg
dir ffmpeg\include
dir ffmpeg\bin
SET FFMPEG=%CD%\ffmpeg
echo FFMPEG=%FFMPEG%>>%GITHUB_ENV%
echo PATH=%FFMPEG%\lib;%FFMPEG%\bin;%PATH%>>%GITHUB_ENV%
echo LIBRARY_PATH=%FFMPEG%\lib;%FFMPEG%\bin;%PATH%>>%GITHUB_ENV%
echo INCLUDE=%FFMPEG%\include;%INCLUDE%>>%GITHUB_ENV%
echo CPLUS_INCLUDE_PATH=%FFMPEG%\include;%CPLUS_INCLUDE_PATH%>>%GITHUB_ENV%
echo LIB=%FFMPEG%\lib;%FFMPEG%\bin;%LIB%>>%GITHUB_ENV%
- name: QMake Test
if: ${{ matrix.type == 'MSVC' }}
shell: cmd
run: |
set QT_LOGGING_RULES=qt.QtAVPlayer.debug=true
set QT_FORCE_STDERR_LOGGING=1
set QT_ASSUME_STDERR_HAS_CONSOLE=1
cd tests/auto/integration/qavdemuxer
qmake
nmake
release\tst_qavdemuxer.exe
cd ../qavplayer
cd qavplayer
qmake
nmake
release\tst_qavplayer.exe -maxwarnings 100000
- name: QMake Test
if: ${{ matrix.type == 'MINGW' && matrix.qt_version == '5.15.2' }}
shell: cmd
run: |
set QT_LOGGING_RULES=qt.QtAVPlayer.debug=true
set QT_FORCE_STDERR_LOGGING=1
set QT_ASSUME_STDERR_HAS_CONSOLE=1
cd tests/auto/integration/qavdemuxer
qmake
mingw32-make
release\tst_qavdemuxer.exe
cd ../qavplayer
qmake
mingw32-make
release\tst_qavplayer.exe -maxwarnings 100000
- name: QMake Examples
if: ${{ matrix.type == 'MSVC' }}
run: |
cd examples/qml_video
qmake
nmake
cd ../extract_frames
qmake
nmake
- name: CMake Examples
if: ${{ matrix.type == 'MSVC' }}
run: |
cd examples/qml_video
cmake . -DQT_AVPLAYER_MULTIMEDIA=ON -DCMAKE_CXX_STANDARD_INCLUDE_DIRECTORIES=D:\a\QtAVPlayer\ffmpeg\include -DCMAKE_LIBRARY_PATH=D:\a\QtAVPlayer\ffmpeg\lib
cmake --build . -v
cd ../widget_video
cmake . -DQT_AVPLAYER_MULTIMEDIA=ON -DCMAKE_CXX_STANDARD_INCLUDE_DIRECTORIES=D:\a\QtAVPlayer\ffmpeg\include -DCMAKE_LIBRARY_PATH=D:\a\QtAVPlayer\ffmpeg\lib
cmake --build . -v
- name: QMake Examples
if: ${{ matrix.type == 'MINGW' }}
run: |
cd examples/qml_video
qmake
mingw32-make
cd ../extract_frames
qmake
mingw32-make