obs-studio/appveyor.yml

38 lines
1.7 KiB
YAML
Raw Normal View History

2018-05-19 04:48:07 +00:00
image: Visual Studio 2017
2017-01-19 04:50:40 +00:00
environment:
CURL_VERSION: 7.56.1
2017-01-19 04:50:40 +00:00
install:
- git submodule update --init --recursive
2018-05-19 04:48:07 +00:00
- if exist dependencies2017.zip (curl -kLO https://obsproject.com/downloads/dependencies2017.zip -f --retry 5 -z dependencies2017.zip) else (curl -kLO https://obsproject.com/downloads/dependencies2017.zip -f --retry 5 -C -)
- if exist vlc.zip (curl -kLO https://obsproject.com/downloads/vlc.zip -f --retry 5 -z vlc.zip) else (curl -kLO https://obsproject.com/downloads/vlc.zip -f --retry 5 -C -)
2018-05-19 04:48:07 +00:00
- 7z x dependencies2017.zip -odependencies2017
- 7z x vlc.zip -ovlc
2018-05-19 04:48:07 +00:00
- set DepsPath32=%CD%\dependencies2017\win32
- set DepsPath64=%CD%\dependencies2017\win64
- set VLCPath=%CD%\vlc
- set QTDIR32=C:\Qt\5.10.1\msvc2015
2018-05-19 04:48:07 +00:00
- set QTDIR64=C:\Qt\5.10.1\msvc2017_64
- set build_config=RelWithDebInfo
2018-05-19 04:48:07 +00:00
- mkdir build build32 build64
- cd ./build32
2018-05-19 04:48:07 +00:00
- cmake -G "Visual Studio 15 2017" -DCOPIED_DEPENDENCIES=false -DCOPY_DEPENDENCIES=true -DBUILD_CAPTIONS=true -DCOMPILE_D3D12_HOOK=true ..
- cd ../build64
2018-05-19 04:48:07 +00:00
- cmake -G "Visual Studio 15 2017 Win64" -DCOPIED_DEPENDENCIES=false -DCOPY_DEPENDENCIES=true -DBUILD_CAPTIONS=true -DCOMPILE_D3D12_HOOK=true ..
build_script:
- call msbuild /m /p:Configuration=%build_config% C:\projects\obs-studio\build32\obs-studio.sln /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
- call msbuild /m /p:Configuration=%build_config% C:\projects\obs-studio\build64\obs-studio.sln /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
before_deploy:
- C:\projects\obs-studio\CI\before-deploy-win.cmd
2017-01-19 04:50:40 +00:00
deploy_script:
2017-02-24 12:25:53 +00:00
- ps: Push-AppveyorArtifact "build.zip" -FileName "$(git describe).zip"
test: off
cache:
2018-05-19 04:48:07 +00:00
- dependencies2017.zip
- vlc.zip