forked from Breakthrough/PySceneDetect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
112 lines (101 loc) · 5.1 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
100
101
102
103
104
105
106
107
108
109
110
111
112
# Build signed releases for PySceneDetect Windows x64
build: false
# Branches applies to tags as well. We only build on tagged releases of the form vX.Y.Z-release
branches:
only:
- main
- /releases\/.+/
- /v.+-release/
skip_tags: false
skip_non_tags: true
environment:
matrix:
- PYTHON: "C:\\Python39-x64"
# Encrypted AdvancedInstaller License
ai_license_secret:
secure: MOkULlGPSi0C1Hg2PU1h2SZg/eyQnPQhRJ1XFlavfMKMOoX9hY4pSjpdgW3psSau
ai_license_salt:
secure: /LlGOUGZk8HQgrW6txtssTt8I6Z6pU7K3XOcqTqr2iKX4vLO3ZTdILgL/6M6u7gWVdRoUYfbxm4JVYjs4hfcmQ==
# SignPath Config for Code Signing
deploy:
- provider: Webhook
url: https://app.signpath.io/API/v1/f2efa44c-5b5c-45f2-b44f-8f9dde708313/Integrations/AppVeyor?ProjectSlug=PySceneDetect&SigningPolicySlug=release-signing
authorization:
secure: FBgWCaxCCKOqc2spYf5NGWSNUGLbT5WeuC5U0k4Of1Ids9n51YWxhGlMyzLbdNBFe64RUcOSzk/N3emlQzbsJg==
install:
- echo * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- echo * * SETTING UP PYTHON ENVIRONMENT * *
- echo * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- 'SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%'
- python --version
- python -m pip install --upgrade pip
- python -m pip install -r docs/requirements.txt
- python -m pip install --upgrade -r dist/requirements_windows.txt
# Checkout build resources and third party software used for testing.
- git checkout refs/remotes/origin/resources -- dist/
- appveyor DownloadFile https://github.com/GyanD/codexffmpeg/releases/download/6.0/ffmpeg-6.0-full_build.7z
- 7z e ffmpeg-6.0-full_build.7z -odist/ffmpeg ffmpeg.exe LICENSE -r
- echo * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- echo * * BUILDING WINDOWS EXE * *
- echo * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
# Build Windows .EXE and create portable .ZIP
- python dist/pre_release.py
- pyinstaller dist/scenedetect.spec
- sphinx-build -b singlehtml docs dist/scenedetect/docs
- mkdir dist\scenedetect\thirdparty
- move LICENSE dist\scenedetect\
- move dist\windows\README* dist\scenedetect\
- move dist\windows\LICENSE* dist\scenedetect\thirdparty\
- move scenedetect\_thirdparty\LICENSE* dist\scenedetect\thirdparty\
- move dist\ffmpeg\ffmpeg.exe dist\scenedetect\
- move dist\ffmpeg\LICENSE dist\scenedetect\thirdparty\LICENSE-FFMPEG
- cd dist/scenedetect
- 7z a ../scenedetect-win64.zip *
- cd ../..
- echo * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- echo * * BUILDING MSI INSTALLER * *
- echo * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
# Download, install, and register AdvancedInstaller
- cd dist/installer
- ps: iex ((New-Object Net.WebClient).DownloadString('https://raw.githubusercontent.com/appveyor/secure-file/master/install.ps1'))
- appveyor-tools\secure-file -decrypt license65.dat.enc -secret %ai_license_secret% -salt %ai_license_salt%
- appveyor DownloadFile https://www.advancedinstaller.com/downloads/advinst.msi
- msiexec /i advinst.msi /qn
- 'SET PATH=%PATH%;C:\\Program Files (x86)\\Caphyon\\Advanced Installer 21.8.1\\bin\\x86'
# License path must be absolute
- AdvancedInstaller.com /RegisterOffline "%cd%\license65.dat"
# Create MSI installer
- AdvancedInstaller.com /build PySceneDetect.aip
- cd ../..
- echo * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- echo * * PACKAGING BUILD ARTIFACTS * *
- echo * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
# Zip all resources together for code signing
- cd dist
- move installer\PySceneDetect-*.msi .
- cp scenedetect\scenedetect.exe .
- 7z a scenedetect-signed.zip scenedetect.exe PySceneDetect-*.msi
- cd ..
test_script:
- echo * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- echo * * TESTING BUILD * *
- echo * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
# Checkout required test resources
- git fetch --depth=1 https://github.com/Breakthrough/PySceneDetect.git refs/heads/resources:refs/remotes/origin/resources
- git checkout refs/remotes/origin/resources -- tests/resources/
- move dist\scenedetect\ffmpeg.exe ffmpeg.exe
# Run unit tests
- pytest
# Test Windows build
- move ffmpeg.exe dist\scenedetect\ffmpeg.exe
- cd dist/scenedetect
- scenedetect.exe version
- scenedetect.exe -i ../../tests/resources/testvideo.mp4 -b opencv detect-content time -e 2s
- scenedetect.exe -i ../../tests/resources/testvideo.mp4 -b pyav detect-content time -e 2s
artifacts:
# Portable ZIP
- path: dist/scenedetect-win64.zip
name: PySceneDetect-win64_portable
# MSI Installer + .EXE Bundle for Signing
- path: dist/scenedetect-signed.zip
name: PySceneDetect-win64_installer