-
Notifications
You must be signed in to change notification settings - Fork 176
/
appveyor.yml
79 lines (61 loc) · 2.97 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
76
77
78
79
version: 1.5.0.{build}
image: Visual Studio 2022
environment:
matrix:
- PlatformToolset: v141
platform:
- Any CPU
configuration:
- Release
install:
- if "%platform%"=="x64" set archi=amd64
- if "%platform%"=="x64" set platform_input=x64
- if "%platform%"=="Any CPU" set archi=x86
- if "%platform%"=="Any CPU" set platform_input=Any CPU
- call "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat" %archi%
# - call "C:\Program Files\Microsoft Visual Studio\2022\Professional\VC\Auxiliary\Build\vcvarsall.bat" x86
- nuget restore "%APPVEYOR_BUILD_FOLDER%"\Source\src\WixSharp.Test\packages.config -PackagesDirectory "%APPVEYOR_BUILD_FOLDER%"\Source\src\packages
- nuget restore "%APPVEYOR_BUILD_FOLDER%"\Source\src\WixSharp.UI.WPF\packages.config -PackagesDirectory "%APPVEYOR_BUILD_FOLDER%"\Source\src\packages
init:
- git config --global core.autocrlf true
build:
parallel: true # enable MSBuild parallel builds
verbosity: minimal
build_script:
- cd "%APPVEYOR_BUILD_FOLDER%"\Source\src
- if "%PlatformToolset%"=="v141" msbuild WixSharp.Suite.sln -t:restore /p:configuration="%configuration%" /p:platform="%platform_input%" /p:PlatformToolset="%PlatformToolset%" /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
# - if "%PlatformToolset%"=="v141" msbuild WixSharp.Suite.sln /p:configuration="Release" /p:platform="Any CPU" /p:PlatformToolset="Any CPU"
after_build:
# - cd "%APPVEYOR_BUILD_FOLDER%"\src\CSScriptNpp
# - ps: >-
# if ($env:PLATFORM -eq "x64" -and $env:CONFIGURATION -eq "Release") {
# #Push-AppveyorArtifact "bin\$env:PLATFORM\$env:CONFIGURATION\" -FileName CSScriptNpp.dll
# }
# if ($env:PLATFORM -eq "Any CPU" -and $env:CONFIGURATION -eq "Release") {
# Push-AppveyorArtifact "bin\$env:PLATFORM\$env:CONFIGURATION\CSScriptNpp.dll" -FileName CSScriptNpp.dll
# }
# if ($($env:APPVEYOR_REPO_TAG) -eq "true" -and $env:CONFIGURATION -eq "Release" -and $env:PLATFORMTOOLSET -eq "v141") {
# if($env:PLATFORM -eq "x64"){
# $ZipFileName = "CSScriptNpp_$($env:APPVEYOR_REPO_TAG_NAME)_x64.zip"
# 7z a $ZipFileName bin\$env:PLATFORM\$env:CONFIGURATION\CSScriptNpp.dll
# }
# if($env:PLATFORM -eq "Any CPU"){
# $ZipFileName = "CSScriptNpp_$($env:APPVEYOR_REPO_TAG_NAME)_x86.zip"
# 7z a $ZipFileName bin\$env:PLATFORM\$env:CONFIGURATION\CSScriptNpp.dll
# }
# }
artifacts:
# - path: Source\src\WixSharp.Samples\WixSharp.*
# name: binaries
deploy:
# provider: GitHub
# auth_token:
# secure: !!TODO, see https://www.appveyor.com/docs/deployment/github/#provider-settings!!
# artifact: releases
# draft: false
# prerelease: false
# force_update: true
# on:
# appveyor_repo_tag: true
# PlatformToolset: v141
# configuration: Release