forked from Kagami/SVT-AV1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
30 lines (26 loc) · 903 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
image: Visual Studio 2019
configuration: Release
install:
- git submodule update --init
- appveyor DownloadFile https://github.com/yasm/yasm/releases/download/v1.3.0/yasm-1.3.0-win64.exe -FileName yasm.exe
- set PATH=%PATH%;%APPVEYOR_BUILD_FOLDER%
- cmake . -G "Visual Studio 16 2019" -A x64 -DCMAKE_ASM_NASM_COMPILER="yasm.exe" -DBUILD_TESTING=ON
build:
project: svt-av1.sln
artifacts:
- path: bin\**\SvtAv1EncApp.exe
name: $(APPVEYOR_PROJECT_NAME)
- path: bin\**\SvtAv1DecApp.exe
name: $(APPVEYOR_PROJECT_NAME)
- path: bin\**\SvtAv1Enc.dll
name: $(APPVEYOR_PROJECT_NAME)
- path: bin\**\SvtAv1Dec.dll
name: $(APPVEYOR_PROJECT_NAME)
deploy:
- provider: GitHub
artifact: $(APPVEYOR_PROJECT_NAME)
auth_token:
secure: 'sf0pQXlPI+X6LoAR8QUJB74jjzNxcLGOXI3H0nbxJq8llvGPG/TAUd87hq5iHZXo'
prerelease: true
on:
appveyor_repo_tag: true