-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathappveyor.yml
32 lines (31 loc) · 899 Bytes
/
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
os: Visual Studio 2017
version: 1.5.1.{build}
configuration: Release
platform:
- x86
- x64
skip_branch_with_pr: true
install:
- cmd: git submodule update --init --recursive
assembly_info:
patch: true
file: NppGist\Properties\AssemblyInfo.cs;NppGist.Tests\Properties\AssemblyInfo.cs;
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
before_build:
- cmd: >-
nuget restore NppGist.sln
build:
project: NppGist.sln
verbosity: minimal
test:
assemblies:
- NppGist.Tests\bin\$(PLATFORM)\$(CONFIGURATION)\NppGist.Tests.dll
after_test:
- cmd: >-
cd NppGist\bin\%PLATFORM%\%CONFIGURATION%
7z a NppGist-%PLATFORM%-%APPVEYOR_BUILD_VERSION%.zip NppGist.dll
artifacts:
- path: NppGist\bin\%PLATFORM%\%CONFIGURATION%\NppGist-$(PLATFORM)-$(APPVEYOR_BUILD_VERSION).zip
name: NppGist-$(PLATFORM)-$(APPVEYOR_BUILD_VERSION)