forked from richardschneider/net-cldr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
70 lines (59 loc) · 2.58 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
# gitversion will change the version number
version: x-{build}
configuration: Release
os: Visual Studio 2015
init:
- git config --global core.autocrlf input
- git config --global credential.helper store
- ps: Add-Content "$env:USERPROFILE\.git-credentials" "https://$($env:git_token):x-oauth-basic@github.com`n"
- git config --global user.email "noreply@emanon.org"
- git config --global user.name "Appveyor CI"
cache:
- packages -> **\packages.config # preserve "packages" directory in the root of build folder but will reset it if packages.config is modified
environment:
COVERALLS_REPO_TOKEN:
secure: V9xDbTEM+fMPwZamEh+Tk1bLBxh0JYB4BEw74PRjDOAlQByfml+DirCOFIoPEjmT
git_token:
secure: NeX5NCOUXsCLc1UjTJjqB9F02FZ8Wq0VsxqTXC8kBdyK6zjxjebrf/9Da2sY1Kql
snk_secret:
secure: 5QzEIgiDqTIrZruPaIQIvTlNMl5BZ7TGEps7ALyBfHE=
# tools we need for bulding/testing/deploying
install:
- choco install gitversion.portable -pre -y
- choco install docfx -y
- npm install gh-pages -g
# - nuget install secure-file -ExcludeVersion
# - if defined snk_secret secure-file\tools\secure-file -decrypt src\ipfs.ci.snk.enc -secret %snk_secret% -out src\ipfs.dev.snk
# gitversion will change the assembly info
pull_requests:
do_not_increment_build_number: true
assembly_info:
patch: false
before_build:
- nuget restore
- ps: gitversion /output buildserver /updateAssemblyInfo >gitversion.log
build:
project: Cldr.sln
publish_nuget: false
verbosity: minimal
after_test:
# Build documentation in doc\_site
- docfx doc\docfx.json
- if defined git_token gh-pages -d doc\_site -m "new docs %GitVersion_FullSemVer%"
# Build the nuget package
- nuget pack src\Cldr.nuspec -version "%GitVersion_NuGetVersion%" -prop "target=%CONFIGURATION%"
- appveyor PushArtifact "Sepia.Globalization.%GitVersion_NuGetVersion%.nupkg"
# Generate coverage report
- packages\OpenCover.4.6.210-rc\tools\OpenCover.Console.exe -register:user -filter:"+[Sepia.Globalization*]* -[*Tests]*" -target:"C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\MSTest.exe" -targetargs:"/testcontainer:test//bin/Release/Sepia.Globalization.Tests.dll" -output:coverage.xml
- if defined COVERALLS_REPO_TOKEN packages\coveralls.net.0.6.0\tools\csmacnz.coveralls.exe --opencover -i ./coverage.xml --serviceName appveyor --jobId %APPVEYOR_BUILD_NUMBER%
# publish NuGet package on tag build
nuget:
account_feed: true
project_feed: true
disable_publish_on_pr: true
deploy:
- provider: NuGet
api_key:
secure: OdmGEj/l0K0ZPDmXAYx+fryCzV012eTrM29ALBuL0waxvwLvrufdDXiI+1iNhWEG
on:
appveyor_repo_tag: true