forked from Kagami/SVT-AV1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
99 lines (92 loc) · 3.84 KB
/
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
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
image: Visual Studio 2019
configuration: Release
skip_branch_with_pr: true
skip_commits:
files:
- '.github/*'
- 'Docs/*'
- '.travis.yml'
- '.gitignore'
- '*.md'
environment:
APPVEYOR_SAVE_CACHE_ON_ERROR: true
MSYSTEM: MINGW64
MSYS2_PATH_TYPE: inherit
PKG_CONFIG_PATH: C:/msys64/mingw64/lib/pkgconfig
matrix:
- generator: Visual Studio 2019
CFLAGS: /WX
CXXFLAGS: /WX
- generator: Unix Makefiles
matrix:
exclude:
- configuration: Debug
generator: Unix Makefiles
install:
- set "PATH=C:\msys64\mingw64\bin;C:\msys64\usr\bin;%PATH%"
- ps: (New-Object System.Net.WebClient).DownloadFile('https://raw.githubusercontent.com/OpenVisualCloud/SVT-AV1-Resources/master/video.tar.gz', "$PWD\video.tar.gz")
- tar xf video.tar.gz
- pacman -Syyuu --ask=20 --noconfirm --noprogressbar --needed
- ps: if ("$env:generator" -match "Unix") { $env:packages = "mingw-w64-x86_64-ccache mingw-w64-x86_64-gcc pkg-config make" }
- pacman -Suu --ask=20 --noconfirm --noprogressbar --needed mingw-w64-x86_64-yasm %packages%
- ps: |
if ("$env:generator" -match "Visual*") {
cmake -S . -B Build -G "Visual Studio 16 2019" -A x64 -DCMAKE_INSTALL_PREFIX=C:/msys64/mingw64 -DBUILD_SHARED_LIBS=ON -DBUILD_TESTING=ON
} elseif ($null -ne $env:generator){
cmake -S . -B Build -G "$env:generator" -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_BUILD_TYPE="$env:CONFIGURATION" -DCMAKE_INSTALL_PREFIX=C:/msys64/mingw64 -DBUILD_SHARED_LIBS=off
} else {
cmake -S . -B Build -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_BUILD_TYPE="$env:CONFIGURATION" -DCMAKE_INSTALL_PREFIX=C:/msys64/mingw64 -DBUILD_SHARED_LIBS=off
}
for:
- matrix:
only:
- generator: Unix Makefiles
configuration: Release
build_script:
- make -C Build -j install
- pkg-config --debug --exists --print-errors SvtAv1Enc
- git clone https://github.com/FFmpeg/FFmpeg.git --depth=1 --branch=master ffmpeg
- cd ffmpeg
- git apply --ignore-space-change --ignore-whitespace %APPVEYOR_BUILD_FOLDER%/ffmpeg_plugin/0001-Add-ability-for-ffmpeg-to-run-svt-av1.patch
- ps: |
$path = ([System.Environment]::GetEnvironmentVariable('PATH', 'Machine').Split(';') | Where-Object { $_ -notmatch 'Git' }) -join ';'
[System.Environment]::SetEnvironmentVariable('PATH', $path, 'Machine')
- bash -c './configure --arch=x86_64 --cc="ccache gcc" --cxx="ccache g++" --enable-libsvtav1 --enable-encoder=libsvt_av1 || cat ffbuild/config.log'
- make -j 10
- ffmpeg -i ../akiyo_cif.y4m -c:v libsvt_av1 akiyo.mp4
- cd ..
- ps: if ($env:APPVEYOR_REPO_BRANCH -eq "master" -and $null -eq $env:APPVEYOR_PULL_REQUEST_HEAD_COMMIT) { Push-AppveyorArtifact -FileName ffmpeg.exe $(Get-ChildItem "ffmpeg\ffmpeg.exe").FullName }
- branches:
only:
- master
matrix:
only:
- generator: Visual Studio 2019
configuration: Release
artifacts:
- path: bin\Release\SvtAv1EncApp.exe
name: $(APPVEYOR_PROJECT_NAME)
- path: bin\Release\SvtAv1Enc.dll
name: $(APPVEYOR_PROJECT_NAME)
- path: bin\Release\SvtAv1DecApp.exe
name: $(APPVEYOR_PROJECT_NAME)
- path: bin\Release\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
generator: Visual Studio 2019
configuration: Release
build:
project: Build\svt-av1.sln
test_script:
- Bin\%CONFIGURATION%\SvtAv1EncApp -enc-mode 0 -i akiyo_cif.y4m -n 3
- Bin\%CONFIGURATION%\SvtAv1EncApp -enc-mode 8 -i akiyo_cif.y4m -n 150
cache:
- 'C:\msys64\home\appveyor\.ccache'
- 'C:\msys64\var\cache\pacman\pkg'