-
Notifications
You must be signed in to change notification settings - Fork 50
/
appveyor.yml
54 lines (54 loc) · 2.36 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
version: 3.0.{build}
skip_tags: true
image: Visual Studio 2022
environment:
access_token:
secure: Eq6BjtZ80BXKLwFMg76IjuQAvbLjbojIF/X/ARouGVhxPneJtgDfCXMPNgJ7KBKq
sonar_token:
secure: W7pHKhuTW6Lh8WlXJNTOIaOzeuxLi+H6Nqmnm4pr28jM6jyIpOZ+1r10lIQi0eCA
JAVA_HOME: C:\Program Files\Java\jdk19
nuget:
disable_publish_on_pr: true
build_script:
- dotnet --info
- dotnet restore
- dotnet build -c Release
- dotnet publish SyncChanges.Console -c Release -f net6.0
- dotnet publish SyncChanges.Service -c Release -f net461
- dotnet pack --include-symbols --include-source -c Release SyncChanges
- dotnet pack --include-symbols --include-source -c Release SyncChanges.Console
- dotnet pack --include-symbols --include-source -c Release SyncChanges.Service
- 7z a -mx=9 SyncChanges.Console.%APPVEYOR_BUILD_VERSION%.zip ".\SyncChanges.Console\bin\Release\net6.0\publish\*"
- 7z a -mx=9 SyncChanges.Service.%APPVEYOR_BUILD_VERSION%.zip ".\SyncChanges.Service\bin\Release\net461\publish\*"
test_script:
- ps: |
if (-not $env:APPVEYOR_PULL_REQUEST_NUMBER) {
dotnet tool install --global dotnet-sonarscanner
dotnet sonarscanner begin /k:"mganss_SyncChanges" /v:$env:APPVEYOR_BUILD_VERSION /o:"mganss-github" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.login="$env:sonar_token" /d:sonar.cs.opencover.reportsPaths="$($env:APPVEYOR_BUILD_FOLDER)\coverage.xml" /d:sonar.exclusions="**/*.xsd" /d:sonar.coverage.exclusions="**/Program.cs"
dotnet build
}
- dotnet test /p:CollectCoverage=true SyncChanges.Tests\SyncChanges.Tests.csproj
- ps: cp coverage.*.xml ./coverage.xml
- ps: |
if (-not $env:APPVEYOR_PULL_REQUEST_NUMBER) {
dotnet sonarscanner end /d:sonar.login="$env:sonar_token"
}
- pip install codecov
- codecov -f "coverage.xml"
artifacts:
- path: 'SyncChanges\**\*.*nupkg'
- path: 'SyncChanges.Console\**\*.*nupkg'
- path: 'SyncChanges.Service\**\*.*nupkg'
- path: SyncChanges.Console.%APPVEYOR_BUILD_VERSION%.zip
- path: SyncChanges.Service.%APPVEYOR_BUILD_VERSION%.zip
deploy:
- provider: GitHub
tag: v$(APPVEYOR_BUILD_VERSION)
release: $(APPVEYOR_BUILD_VERSION)
description: '$(APPVEYOR_REPO_COMMIT_MESSAGE)'
auth_token:
secure: Eq6BjtZ80BXKLwFMg76IjuQAvbLjbojIF/X/ARouGVhxPneJtgDfCXMPNgJ7KBKq
artifact: /SyncChanges\..*\.zip/
draft: true
on:
branch: master