Skip to content
This repository was archived by the owner on Feb 15, 2021. It is now read-only.

Commit 84bc6af

Browse files
committed
Add AppVeyor file
1 parent b8f25d1 commit 84bc6af

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

appveyor.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
version: '1.0.{build}'
2+
configuration:
3+
- Debug
4+
- Release
5+
platform: Any CPU
6+
environment:
7+
# Don't report back to the mothership
8+
DOTNET_CLI_TELEMETRY_OPTOUT: 1
9+
init:
10+
- ps: $Env:LABEL = "CI" + $Env:APPVEYOR_BUILD_NUMBER.PadLeft(5, "0")
11+
before_build:
12+
- appveyor-retry dotnet restore -v Minimal
13+
build_script:
14+
- dotnet build "src\Unosquare.Labs.LiteLib" -c %CONFIGURATION% --no-dependencies --version-suffix %LABEL%
15+
test_script:
16+
- dotnet test "test\Unosquare.Labs.LiteLib.Tests" -c %CONFIGURATION%
17+
artifacts:
18+
- path: artifacts\**\*.*
19+
cache:
20+
- '%USERPROFILE%\.nuget\packages'

0 commit comments

Comments
 (0)