This repository has been archived by the owner on Aug 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathappveyor.yml
76 lines (67 loc) · 2.2 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
version: '{build}'
image: Visual Studio 2019
configuration:
- Release2019
- Release2020
- Release2021
platform:
- x64
cache:
- '%LocalAppData%\NuGet\v3-cache'
#only set vesion for first build
init:
- ps: |
$version = $Env:CONFIGURATION
$env:REVIT_VERSION=$version.replace("Release","")
If($Env:CONFIGURATION -eq "Release2019")
{
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 for Speckle Revit is: $Env:APPVEYOR_BUILD_VERSION"
install:
# init and update submodules
- git submodule update --recursive --init
assembly_info:
patch: true
file: AssemblyInfo.*
assembly_version: '{version}'
assembly_file_version: '{version}'
before_build:
- nuget restore SpeckleRevit.sln
- mkdir Release\%CONFIGURATION%\
# maybe needed for local build events to go through
#- mkdir %localappdata%\Autodesk\REVIT\Addins\2019
build:
project: SpeckleRevit.sln
verbosity: minimal
after_build:
- 7z a SpeckleRevit%REVIT_VERSION%-%APPVEYOR_BUILD_VERSION%.zip -r "%APPVEYOR_BUILD_FOLDER%\Release\%CONFIGURATION%\*"
artifacts:
path: SpeckleRevit%REVIT_VERSION%-%APPVEYOR_BUILD_VERSION%.zip
name: Release
deploy:
- release: SpeckleRevit-$(APPVEYOR_BUILD_VERSION)
tag: $(APPVEYOR_REPO_TAG_NAME)
#description: ''
provider: GitHub
auth_token:
secure: D5tPFvdQMg9sIe0sSvQjEWw4KAdOk1jyxNwiH5qP5DpDmUH6n6NgTdA+56vXS1Pe # your encrypted token from GitHub
artifact: release
#draft: false
#prerelease: false
force_update: true
on: # release from master branch only
appveyor_repo_tag: true # deploy on tag push only