forked from sakura-editor/sakura
-
Notifications
You must be signed in to change notification settings - Fork 1
/
appveyor.yml
57 lines (48 loc) · 1.37 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
version: 1.0.{build}
image: Visual Studio 2017
configuration:
- Release
platform:
- x64
- Win32
# comment-out clone_depth to fetch entire repository.
## set clone depth
#clone_depth: 5
# see "Skip commits" at https://www.appveyor.com/docs/how-to/filtering-commits/#commit-files-github-and-bitbucket-only
skip_commits:
files:
- '**/*.md'
- .gitignore
- .editorconfig
- 'azure-pipelines*.yml'
- 'ci/azure-pipelines/template*.yml'
- '.github/workflows/*.yml'
install:
- cmd: |
cinst autohotkey.portable -Version 1.1.36.02 -y
cinst locale-emulator -Version 2.5.0.11 -y
cup vswhere
py.exe -m pip install openpyxl --user
cup innosetup
C:\ProgramData\chocolatey\tools\shimgen.exe --output=C:\ProgramData\chocolatey\bin\ISCC.exe --path="C:\Program Files (x86)\Inno Setup 6\ISCC.exe"
# to run our custom scripts instead of automatic MSBuild
build_script:
- cmd: |
git submodule init
git submodule update
build-all.bat %PLATFORM% %CONFIGURATION%
# to run our custom scripts instead of automatic tests
test_script:
- cmd: echo tests\run-tests.bat %PLATFORM% %CONFIGURATION%
for:
# run only for Release
-
matrix:
only:
- platform: Win32
configuration: Release
- platform: x64
configuration: Release
artifacts:
- path: 'sakura-*$(platform)-$(configuration)*.zip*'
- path: 'sha256.txt'