forked from win-acme/win-acme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
58 lines (56 loc) · 3.95 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
version: 2.1.23.{build}
image: Visual Studio 2022
platform: Any CPU
shallow_clone: true
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
assembly_version: '{version}'
file_version: '{version}'
environment:
PfxPassword:
secure: tC3u6WA0oWdjXzbLX61Ux2tBK0KhFTT9FgUZFn0Nx0pY045twcsFBvRL+Di6SE80Nc88xaM/xloHGUAQoIq4OANLNg0BEsDYPnhziZDiLBo=
clone_script:
- cmd: >-
git clone -q --branch=%APPVEYOR_REPO_BRANCH% https://github.com/%APPVEYOR_REPO_NAME%.git %APPVEYOR_BUILD_FOLDER%
&& cd %APPVEYOR_BUILD_FOLDER%
&& git checkout -qf %APPVEYOR_REPO_COMMIT%
&& git submodule update --init --recursive
before_build:
- cmd: dotnet --version
build_script:
- cmd: dotnet pack ./src/main/wacs.csproj -c "ReleasePluggable"
- cmd: dotnet publish ./src/main/wacs.csproj -c "Release" -r win-x64 --self-contained /p:PublishSingleFile=true /p:PublishTrimmed=true /p:IncludeNativeLibrariesForSelfExtract=true /p:BuiltInComInteropSupport=true
- cmd: dotnet publish ./src/main/wacs.csproj -c "Release" -r win-x86 --self-contained /p:PublishSingleFile=true /p:PublishTrimmed=true /p:IncludeNativeLibrariesForSelfExtract=true /p:BuiltInComInteropSupport=true
- cmd: dotnet publish ./src/main/wacs.csproj -c "Release" -r win-arm64 --self-contained /p:PublishSingleFile=true /p:PublishTrimmed=true /p:IncludeNativeLibrariesForSelfExtract=true /p:BuiltInComInteropSupport=true
- cmd: dotnet publish ./src/main/wacs.csproj -c "ReleasePluggable" -r win-x64 --self-contained /p:PublishSingleFile=true /p:IncludeNativeLibrariesForSelfExtract=true
- cmd: dotnet publish ./src/main/wacs.csproj -c "ReleasePluggable" -r win-x86 --self-contained /p:PublishSingleFile=true /p:IncludeNativeLibrariesForSelfExtract=true
- cmd: dotnet publish ./src/main/wacs.csproj -c "ReleasePluggable" -r win-arm64 --self-contained /p:PublishSingleFile=true /p:IncludeNativeLibrariesForSelfExtract=true
- cmd: dotnet publish ./src/plugin.store.keyvault/wacs.store.keyvault.csproj -c Release
- cmd: dotnet publish ./src/plugin.validation.dns.azure/wacs.validation.dns.azure.csproj -c Release
- cmd: dotnet publish ./src/plugin.validation.dns.cloudflare/wacs.validation.dns.cloudflare.csproj -c Release
- cmd: dotnet publish ./src/plugin.validation.dns.digitalocean/wacs.validation.dns.digitalocean.csproj -c Release
- cmd: dotnet publish ./src/plugin.validation.dns.domeneshop/wacs.validation.dns.domeneshop.csproj -c Release
- cmd: dotnet publish ./src/plugin.validation.dns.dreamhost/wacs.validation.dns.dreamhost.csproj -c Release
- cmd: dotnet publish ./src/plugin.validation.dns.godaddy/wacs.validation.dns.godaddy.csproj -c Release
- cmd: dotnet publish ./src/plugin.validation.dns.googledns/wacs.validation.dns.googledns.csproj -c Release
- cmd: dotnet publish ./src/plugin.validation.dns.luadns/wacs.validation.dns.luadns.csproj -c Release
- cmd: dotnet publish ./src/plugin.validation.dns.ns1/wacs.validation.dns.ns1.csproj -c Release
- cmd: dotnet publish ./src/plugin.validation.dns.route53/wacs.validation.dns.route53.csproj -c Release
- cmd: dotnet publish ./src/plugin.validation.dns.simply/wacs.validation.dns.simply.csproj -c Release
- cmd: dotnet publish ./src/plugin.validation.dns.transip/wacs.validation.dns.transip.csproj -c Release
- cmd: dotnet publish ./src/plugin.validation.http.rest/wacs.validation.http.rest.csproj -c Release
test_script:
- cmd: cd %APPVEYOR_BUILD_FOLDER%/src/main.test/
- cmd: nuget install Appveyor.TestLogger -Version 2.0.0
- cmd: cd %APPVEYOR_BUILD_FOLDER%
- cmd: dotnet test ./src/main.test/wacs.test.csproj -c Release --test-adapter-path:. --logger:Appveyor
after_build:
- ps: >-
cd $env:APPVEYOR_BUILD_FOLDER\build\
.\create-artifacts.ps1 $env:APPVEYOR_BUILD_FOLDER $env:APPVEYOR_BUILD_VERSION $env:PfxPassword
Get-ChildItem $env:APPVEYOR_BUILD_FOLDER\build\artifacts\ | Foreach-Object {
Push-AppveyorArtifact $_.FullName -FileName $_.Name
}
deploy: off