forked from zufuliu/notepad4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
79 lines (59 loc) · 2.16 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
version: '24.x.{build}'
image:
- Visual Studio 2017
environment:
matrix:
- compiler: MSVC
- compiler: Clang
shallow_clone: true
test: off
deploy: off
matrix:
fast_finish: true
# No reversion when shallow clone is enabled.
before_build:
- cmd: |
ECHO Update Version Hash
"c:/Program Files/Git/usr/bin/sed" -i "s/\(.\+\)[0-9a-f]\{8\}\(.\+\)/\1%APPVEYOR_REPO_COMMIT:~0,8%\2/gm" ./src/VersionRev.h ./matepath/src/VersionRev.h
for:
- # MSVC Release
matrix:
only:
- compiler: MSVC
build_script:
- cmd: |
CALL "build\VS2017\build.bat" Build x64 Release 1
CALL "locale\build.bat" Build x64 Release 1
CALL "build\make_zip.bat" MSVC x64 Release Locale 1
CALL "build\VS2017\build.bat" Build Win32 Release 1
CALL "locale\build.bat" Build Win32 Release 1
CALL "build\make_zip.bat" MSVC Win32 Release Locale 1
CALL "build\VS2017\build.bat" Build AVX2 Release 1
CALL "locale\build.bat" Build AVX2 Release 1
CALL "build\make_zip.bat" MSVC AVX2 Release Locale 1
CALL "build\VS2017\build.bat" Build ARM64 Release 1
CALL "locale\build.bat" Build ARM64 Release 1
CALL "build\make_zip.bat" MSVC ARM64 Release Locale 1
CALL "build\VS2017\build.bat" Build ARM Release 1
CALL "build\make_zip.bat" MSVC ARM Release 1
artifacts:
- path: 'build\Notepad4*.zip'
name: Notepad4_MSVC
- # Clang Release
matrix:
only:
- compiler: Clang
build_script:
- cmd: |
CALL "build\install_llvm.bat" latest 1
CALL "build\VS2017\build.bat" Build x64 LLVMRelease 1
CALL "build\make_zip.bat" LLVM x64 Release 1
CALL "build\VS2017\build.bat" Build Win32 LLVMRelease 1
CALL "build\make_zip.bat" LLVM Win32 Release 1
CALL "build\VS2017\build.bat" Build AVX2 LLVMRelease 1
CALL "build\make_zip.bat" LLVM AVX2 Release 1
CALL "build\VS2017\build.bat" Build ARM64 LLVMRelease 1
CALL "build\make_zip.bat" LLVM ARM64 Release 1
artifacts:
- path: 'build\Notepad4*.zip'
name: Notepad4_Clang_MSVC