forked from sorayuki/obs-multi-rtmp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathappveyor.yml
48 lines (35 loc) · 994 Bytes
/
appveyor.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
environment:
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
OBS_VER: "25.0.8"
- APPVEYOR_BUILD_WORKER_IMAGE: macos
- APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu2004
for:
- matrix:
only:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
install:
- pwsh: ci/install.ps1 -OBS_VER "$Env:OBS_VER"
build_script:
- pwsh: ./build.ps1 -OBS_BIN_DIR32 "../OBS-Studio-${Env:OBS_VER}-Full-x86" -OBS_BIN_DIR64 "../OBS-Studio-${Env:OBS_VER}-Full-x64" -OBS_SRC_DIR "../obs-studio-${Env:OBS_VER}"
artifacts:
- path: "*.zip"
- matrix:
only:
- APPVEYOR_BUILD_WORKER_IMAGE: macos
install:
- ci/install_macos.sh
build_script:
- ./build_macos.sh
artifacts:
- path: "*.pkg"
- matrix:
only:
- APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu2004
install:
- ci/install_ubuntu.sh
build_script:
- sed -i 's/CMAKE_CXX_STANDARD 17/CMAKE_CXX_STANDARD 11/' CMakeLists.txt
- QTDIR=$HOME/Qt/5.14/gcc_64 ./build_linux.sh
artifacts:
- path: "*.tar.xz"