Thanks to visit codestin.com
Credit goes to github.com

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

Commit 56633eb

Browse files
committed
Add AppVeyor build script
1 parent 79c1416 commit 56633eb

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

appveyor.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
version: '{build}'
2+
3+
branches:
4+
only:
5+
- master
6+
- vNext
7+
8+
skip_tags: true
9+
10+
clone_folder: C:\projects\libgit2sharp
11+
12+
environment:
13+
matrix:
14+
- xunit_runner: xunit.console.clr4.exe
15+
Arch: 64
16+
- xunit_runner: xunit.console.clr4.x86.exe
17+
Arch: 32
18+
19+
build_script:
20+
- msbuild "C:\projects\libgit2sharp\LibGit2Sharp.sln" /verbosity:normal /p:Configuration=Release /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" /property:ExtraDefine="LEAKS_IDENTIFYING"
21+
22+
test_script:
23+
- '%xunit_runner% "C:\projects\libgit2sharp\LibGit2Sharp.Tests\bin\Release\LibGit2Sharp.Tests.dll" /appveyor'
24+
- IF %ERRORLEVEL% NEQ 0 EXIT /B %ERRORLEVEL%
25+
26+
notifications:
27+
- provider: Email
28+
to:
29+
30+
on_build_status_changed: true

0 commit comments

Comments
 (0)