-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path.appveyor.yml
36 lines (31 loc) · 967 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
#---------------------------------#
# environment configuration #
#---------------------------------#
# Build worker image (VM template)
image:
- Visual Studio 2022
#---------------------------------#
# Build Script #
#---------------------------------#
build_script:
- ps: Invoke-RestMethod -Uri 'https://dot.net/v1/dotnet-install.ps1' -OutFile '.\dotnet-install.ps1'
- ps: New-Item -Path .\.dotnet -ItemType Directory -Force | Out-Null
- ps: .\dotnet-install.ps1 -Channel 6.0 -InstallDir .\.dotnet
- ps: .\build.ps1 --target=CI
# Tests
test: off
#---------------------------------#
# Branches to build #
#---------------------------------#
branches:
# Whitelist
only:
- develop
- master
- /release/.*/
- /hotfix/.*/
#---------------------------------#
# Build Cache #
#---------------------------------#
cache:
- tools -> recipe.cake