-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathappveyor.yml
75 lines (75 loc) · 2.18 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
65
66
67
68
69
70
71
72
73
74
75
version: 1.0.{build}
skip_tags: true
stack: redis, node 18
skip_commits:
message: /\[chore\]/
branches:
only:
- master
- /preview*/
- /release*/
image:
- Visual Studio 2022
environment:
GH_TOKEN:
secure: /o9VAhx5ewGmdLR9qcgFJMzBaCuzOmGlsXAHu7khUJLdQzsv4gJzLUfYDghcRPHd
JAVA_HOME: C:\Program Files\Java\jdk19
PATH: $(JAVA_HOME)\bin;$(PATH)
dotnetsdk: 9.0.101
init:
- cmd: git config --global core.autocrlf true
install:
- ps: if ($isWindows) { Install-Product node '' }
- sh: wget -q https://packages.microsoft.com/config/ubuntu/16.04/packages-microsoft-prod.deb
- sh: sudo dpkg -i packages-microsoft-prod.deb
- sh: sudo apt-get -y install apt-transport-https
- sh: sudo apt-get update
- sh: sudo chmod +x ./dotnet-install.sh
- sh: sudo ./dotnet-install.sh -Channel Current -Version $dotnetsdk -InstallDir ./dotnetsdk -NoPath
- sh: export PATH=/home/appveyor/projects/identity-redis/dotnetsdk:$PATH
- sh: sudo apt -y install nuget
- ps: dotnet tool install --global GitVersion.Tool
- ps: dotnet gitversion /l console /output buildserver
- cmd: pwsh .\dotnet-install.ps1 -Version %dotnetsdk% -InstallDir "C:\Program Files\dotnet"
- ps: dotnet tool install --global dotnet-sonarscanner
- cmd: nuget install redis-64 -excludeversion
- cmd: redis-64\tools\redis-server.exe --service-install
- cmd: redis-64\tools\redis-server.exe --service-start
- cmd: nuget install ReportGenerator -ExcludeVersion
- ps: ./appveyorinit.ps1
build_script:
- ps: ./build.ps1
test_script:
- cmd: publish.cmd
artifacts:
- path: artifacts/**/*.nupkg
name: nuget
deploy:
- provider: NuGet
api_key:
secure: bvkKhXIKsDM1ThfcWTbuusND0sOBiDoJGOoD2fYijGoj4C9xx22QKfR7Y9q+j7eX
on:
branch:
- /preview*/
- /release*/
CI_WINDOWS: true
- provider: GitHub
auth_token: $(GH_TOKEN)
draft: true
prerelease: false
release: $(Version)
on:
branch:
- /preview*/
CI_WINDOWS: true
for:
-
branches:
only:
- /release*/
on_success:
- cmd: semantic-release -b %APPVEYOR_REPO_BRANCH%
-
branches:
except:
- master