-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathappveyor.yml
45 lines (41 loc) · 882 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
image:
- Ubuntu
- Visual Studio 2022
# Build script
init:
- git config --global core.autocrlf true
for:
-
matrix:
only:
- image: Ubuntu
test: off
build_script:
- cd build
- chmod +xxx ./build.sh
- export IGNORE_NORMALISATION_GIT_HEAD_MOVE=1
- ./build.sh --target="AppVeyor" --configuration=Release --UploadCoverageReport=False
-
matrix:
only:
- image: Visual Studio 2022
test: off
build_script:
- cd Build
- set IGNORE_NORMALISATION_GIT_HEAD_MOVE=1
- ps: >-
.\build.ps1 --target="AppVeyor" --configuration=Release --UploadCoverageReport=True
# Tests
test: off
# Branches to build
branches:
# Whitelist
only:
- master
- dev
- /r/.*/
- /release/.*/
- /hotfix/.*/
# Build cache
cache:
- Build/tools -> Build/build.cake