File tree 3 files changed +29
-1
lines changed 3 files changed +29
-1
lines changed Original file line number Diff line number Diff line change 1
1
# LibGit2Sharp
2
2
3
+ [ ![ master azurepipelines] [ master-azurepipelines-badge ]] [ master-azurepipelines ]
3
4
[ ![ master win] [ master-win-badge ]] [ master-win ]
4
5
[ ![ master nix] [ master-nix-badge ]] [ master-nix ]
5
6
[ ![ coverity] [ coverity-badge ]] [ coverity-project ]
6
7
[ ![ coveralls] [ coveralls-badge ]] [ coveralls-project ]
7
8
9
+ [ master-azurepipelines-badge ] : https://dev.azure.com/libgit2sharp/libgit2sharp/_apis/build/status/libgit2sharp
10
+ [ master-azurepipelines ] : https://dev.azure.com/libgit2sharp/libgit2sharp/_apis/build/status/libgit2sharp?branchName=master
8
11
[ master-win-badge ] : https://ci.appveyor.com/api/projects/status/8qxcoqdo9kp7x2w9/branch/master?svg=true
9
12
[ master-win ] : https://ci.appveyor.com/project/libgit2/libgit2sharp/branch/master
10
13
[ master-nix-badge ] : https://travis-ci.org/libgit2/libgit2sharp.svg?branch=master
Original file line number Diff line number Diff line change
1
+ trigger :
2
+ - master
3
+ - maint/*
4
+
5
+ variables :
6
+ solution : ' **/*.sln'
7
+ buildPlatform : ' Any CPU'
8
+ buildConfiguration : ' Release'
9
+
10
+ jobs :
11
+ - job : Windows
12
+ pool :
13
+ vmImage : ' VS2017-Win2016'
14
+ steps :
15
+ - script : buildandtest.cmd
16
+ - job : Linux
17
+ pool :
18
+ vmImage : ' Ubuntu 16.04'
19
+ steps :
20
+ - script : ./buildandtest.sh
21
+ - job : macOS
22
+ pool :
23
+ vmImage : ' macOS 10.13'
24
+ steps :
25
+ - script : ./buildandtest.sh
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ dotnet build "%~dp0\" /v:minimal /nologo /property:ExtraDefine="%EXTRADEFINE%"
31
31
@ IF ERRORLEVEL 1 EXIT /B %ERRORLEVEL%
32
32
33
33
:: Run tests on Desktop and CoreCLR
34
- " %userprofile% \.nuget\packages\xunit.runner.console\2.3.1 \tools\net452\xunit.console.exe" " %~dp0 bin\LibGit2Sharp.Tests\%Configuration% \net461\LibGit2Sharp.Tests.dll" -noshadow
34
+ " %userprofile% \.nuget\packages\xunit.runner.console\2.4.0 \tools\net452\xunit.console.exe" " %~dp0 bin\LibGit2Sharp.Tests\%Configuration% \net461\LibGit2Sharp.Tests.dll" -noshadow
35
35
@ IF ERRORLEVEL 1 EXIT /B %ERRORLEVEL%
36
36
dotnet test " %~dp0 LibGit2Sharp.Tests/LibGit2Sharp.Tests.csproj" -f netcoreapp2.0 --no-restore --no-build
37
37
@ IF ERRORLEVEL 1 EXIT /B %ERRORLEVEL%
You can’t perform that action at this time.
0 commit comments