This repository was archived by the owner on Jan 6, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change 1
1
language : csharp
2
+ mono : latest
3
+ dotnet : 1.0.4
4
+ dist : trusty
5
+
2
6
solution : src/GitTools.Testing.sln
3
7
sudo : false
4
8
install :
5
- # - sudo nuget update -self
6
- - nuget restore src/GitTools.Testing.sln
7
9
- nuget install xunit.runner.console -Version 2.1.0 -OutputDirectory ./src/packages
8
10
script :
9
- - xbuild ./src/GitTools.Testing.sln /property:Configuration="Debug" /verbosity:detailed
10
- - mono --debug --runtime=v4.0.30319 ./src/packages/xunit.runner.console.2.1.0/tools/xunit.console.exe ./src/GitTools.Testing.Tests/bin/Debug/GitTools.Testing.Tests.dll
11
+ - dotnet restore src/GitTools.Testing.sln
12
+ - msbuild ./src/GitTools.Testing.sln /property:Configuration=Debug
13
+ - dotnet test ./src/GitTools.Testing.Tests/GitTools.Testing.Tests.csproj --configuration Debug --no-build --framework netcoreapp1.0
14
+ # Disable testing against .NET 4.5.2 through Mono because it tries to resolve
15
+ # the Windows libgit binary instead of the linux one.
16
+ # - mono --debug --runtime=v4.0.30319 ./src/packages/xunit.runner.console.2.1.0/tools/xunit.console.exe ./src/GitTools.Testing.Tests/bin/Debug/net452/GitTools.Testing.Tests.dll
You can’t perform that action at this time.
0 commit comments