forked from NLog/NLog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
64 lines (60 loc) · 1.65 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
version: 5.0.0-{build} # Only change for mayor versions (e.g. 6.0)
image:
- Visual Studio 2022
- Previous Ubuntu
configuration: Release
build: no
test: no
skip_tags: true
skip_branch_with_pr: true
nuget:
disable_publish_on_pr: true
matrix:
fast_finish: true
for:
-
matrix:
only:
- image: Visual Studio 2022
init:
- net start MSSQL$SQL2019
environment:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
github_auth_token:
secure: WYvd/k1xGCsDS+4iOhjzxA5/e36RjkxnuVOHpBR+eDtZNNjpYydCyNfd1COME9jI
sonar_token:
secure: OUI/jCbBF75TwKMPT+IfewdgwCgx9nQkRg3cYOEQNJeX5J2++oWS3dmpwO51XduP
build_script:
- ps: ./build.ps1
test_script:
- msbuild /t:rebuild .\tools\CheckSourceCode\src\ /p:Configuration=Release /verbosity:minimal
- tools\CheckSourceCode\NLog.SourceCodeTests.exe no-interactive
- ps: if (./Test-XmlFile.ps1) { Write-Output "Valid XSD" } else { exit 400 }
- ps: ./run-tests.ps1
deploy:
- provider: NuGet
api_key:
secure: 5tuxbM+Ujp0ZtaDCGYET23qKr6bJWo/Vzxlf7uTbspaf8R1R7sIe1JqSDHZoK1gV
on:
branch: master
- provider: NuGet
api_key:
secure: 5tuxbM+Ujp0ZtaDCGYET23qKr6bJWo/Vzxlf7uTbspaf8R1R7sIe1JqSDHZoK1gV
on:
branch: dev
artifacts:
- path: 'artifacts\*.nupkg'
type: NuGetPackage
- path: 'artifacts\*.snupkg'
type: NuGetPackage
-
matrix:
only:
- image: Previous Ubuntu
environment:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
FrameworkPathOverride: /usr/lib/mono/4.6.1-api/
build_script:
- ps: dotnet --version
test_script:
- ps: ./run-tests.ps1