-
Notifications
You must be signed in to change notification settings - Fork 9
/
appveyor.yml
61 lines (54 loc) · 2.07 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
#---------------------------------#
# Build Image #
#---------------------------------#
image: Visual Studio 2022
#---------------------------------#
# Install .NET #
#---------------------------------#
install:
- ps: |
$env:DOTNET_INSTALL_DIR = "$pwd\.dotnetsdk"
mkdir $env:DOTNET_INSTALL_DIR -Force | Out-Null
Invoke-WebRequest -Uri "https://dotnet.microsoft.com/download/dotnet/scripts/v1/dotnet-install.ps1" -OutFile "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1"
'& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 2.1 -InstallDir $env:DOTNET_INSTALL_DIR'
'& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 3.1 -InstallDir $env:DOTNET_INSTALL_DIR'
'& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 5.0 -InstallDir $env:DOTNET_INSTALL_DIR'
'& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 6.0 -InstallDir $env:DOTNET_INSTALL_DIR'
'& "$($env:DOTNET_INSTALL_DIR)/dotnet-install.ps1" -Version 7.0 -InstallDir $env:DOTNET_INSTALL_DIR'
$env:Path = "$env:DOTNET_INSTALL_DIR;$env:Path"
dotnet --info
#---------------------------------#
# Build Script #
#---------------------------------#
build_script:
- ps: .\build.ps1 --target=CI
# Tests
test: off
#---------------------------------#
# Branches to build #
#---------------------------------#
branches:
# Whitelist
only:
- develop
- master
#---------------------------------#
# Notifications Configuration #
#---------------------------------#
notifications:
- provider: Webhook
url: https://webhooks.gitter.im/e/592eec477e12726db2ee
on_build_success: true
on_build_failure: true
on_build_status_changed: true
#---------------------------------#
# Build Cache #
#---------------------------------#
cache:
- tools -> recipe.cake, .config/dotnet-tools.json
#---------------------------------#
# Skip builds for doc changes #
#---------------------------------#
skip_commits:
# Regex for matching commit message
message: /(doc).*/