forked from speckleworks/SpeckleCoreGeometry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
74 lines (62 loc) · 2.22 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
# General Configuration
version: '{build}'
init:
- ps: |
If($Env:APPVEYOR_REPO_TAG -eq "true")
{
Write-Host "We now have a tagged release. Proper."
Write-Host "Tag is $Env:APPVEYOR_REPO_TAG_NAME"
$env:APPVEYOR_BUILD_VERSION=$env:APPVEYOR_REPO_TAG_NAME
Update-AppveyorBuild -Version "$Env:APPVEYOR_REPO_TAG_NAME"
}
else
{
$releases = "https://api.github.com/repos/$env:APPVEYOR_REPO_NAME/releases"
$tag = (Invoke-WebRequest $releases | ConvertFrom-Json)[0].tag_name
$spl = $tag.Split("-")[0]
Update-AppveyorBuild -Version "$spl.$Env:APPVEYOR_BUILD_VERSION-wip"
}
Write-Host "Hello. Build version is: $Env:APPVEYOR_BUILD_VERSION"
# Environment Configuration
image: Visual Studio 2019
cache:
- '%LocalAppData%\NuGet\v3-cache'
install:
#init and update submodules
- git submodule update --recursive --init
# version
assembly_info:
patch: true
file: AssemblyInfo.*
assembly_version: '{version}'
assembly_file_version: '{version}'
# Build Configuration
platform: Any CPU
configuration: Release
before_build:
- nuget restore
build:
project: SpeckleCoreGeometry.sln
verbosity: minimal
after_build:
# remove garbage
- ps: |
Remove-Item "$Env:APPVEYOR_BUILD_FOLDER\SpeckleCoreGeometry\bin\Release\x86" -Recurse -ErrorAction Ignore
Remove-Item "$Env:APPVEYOR_BUILD_FOLDER\SpeckleCoreGeometry\bin\Release\x64" -Recurse -ErrorAction Ignore
Remove-Item "$Env:APPVEYOR_BUILD_FOLDER\SpeckleCoreGeometry\bin\Release\*.pdb" -Recurse -ErrorAction Ignore
Remove-Item "$Env:APPVEYOR_BUILD_FOLDER\SpeckleCoreGeometry\bin\Release\SpeckleCoreGeometry.dll.config" -Recurse -ErrorAction Ignore
# zip everything into a zip file containing package folder structure
- 7z a SpeckleCoreGeometry.zip "%APPVEYOR_BUILD_FOLDER%\SpeckleCoreGeometry\bin\Release\*"
artifacts:
- path: SpeckleCoreGeometry.zip
name: Release
#deploy to github
deploy:
- provider: GitHub
tag: $(APPVEYOR_REPO_TAG_NAME)
auth_token:
secure: D5tPFvdQMg9sIe0sSvQjEWw4KAdOk1jyxNwiH5qP5DpDmUH6n6NgTdA+56vXS1Pe # your encrypted token from GitHub
artifact: Release
force_update: true
on:
appveyor_repo_tag: true