File tree Expand file tree Collapse file tree 2 files changed +25
-14
lines changed Expand file tree Collapse file tree 2 files changed +25
-14
lines changed Original file line number Diff line number Diff line change @@ -251,3 +251,4 @@ paket-files/
251
251
.idea /
252
252
* .sln.iml
253
253
/test /ICSharpCode.SharpZipLib.TestBootstrapper /Properties /launchSettings.json
254
+ _testRunner /
Original file line number Diff line number Diff line change 1
1
language : csharp
2
- mono :
3
- - latest
4
- os :
5
- - linux
6
- - osx
7
2
solution : ICSharpCode.SharpZipLib.sln
3
+
4
+ # matrix:
5
+ # include:
6
+ # - mono: latest
7
+ # - mono: none
8
+ # env: NETCORE=1
9
+ # dotnet: 2.1
10
+ mono : none
11
+ dotnet : 2.1
12
+ os : linux
8
13
install :
9
- - nuget restore ICSharpCode.SharpZipLib.sln
14
+ - dotnet restore
15
+ # - nuget restore ICSharpCode.SharpZipLib.sln
16
+ # - nuget install NUnit.Console -Version 3.8.0 -OutputDirectory _testRunner
10
17
script :
11
- - xbuild /p:Configuration=Debug ICSharpCode.SharpZipLib.sln
12
- - xbuild /p:Configuration=Release ICSharpCode.SharpZipLib.sln
13
- - mono ./packages/NUnit.ConsoleRunner.3.2.1/tools/nunit3-console.exe --framework=mono-4.0 --labels=All --result=./Documentation/nunit3-test-results-travis.xml ./bin/Release/ICSharpCode.SharpZipLib.Tests.dll
18
+ - dotnet build -f netstandard2 src/ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib.csproj
19
+ - dotnet run -c Debug -f netcoreapp2 -p test/ICSharpCode.SharpZipLib.TestBootstrapper/ICSharpCode.SharpZipLib.TestBootstrapper.csproj -- --where "class !~ WindowsNameTransformHandling & test !~ ZipEntryFactoryHandling.CreatedValues & test !~ ZipNameTransformHandling.FilenameCleaning" --result=docs/nunit3-test-results-debug.xml
20
+ - dotnet run -c Release -f netcoreapp2 -p test/ICSharpCode.SharpZipLib.TestBootstrapper/ICSharpCode.SharpZipLib.TestBootstrapper.csproj -- --where "class !~ WindowsNameTransformHandling & test !~ ZipEntryFactoryHandling.CreatedValues & test !~ ZipNameTransformHandling.FilenameCleaning" --result=docs\nunit3-test-results-release.xml
21
+ # - dotnet test test/ICSharpCode.SharpZipLib.Tests/ICSharpCode.SharpZipLib.Tests.csproj
22
+ # - xbuild /p:Configuration=Release ICSharpCode.SharpZipLib.sln
23
+ # - mono ./packages/NUnit.ConsoleRunner.3.2.1/tools/nunit3-console.exe --framework=mono-4.0 --labels=All --result=./Documentation/nunit3-test-results-travis.xml ./bin/Release/ICSharpCode.SharpZipLib.Tests.dll
14
24
after_script :
15
- - nuget pack Build/ICSharpCode.SharpZipLib.nuspec -BasePath Build -OutputDirectory bin/Release
16
- cache :
17
- directories :
18
- - bin
19
- - Documentation
25
+ - dotnet pack -f netstandard2 -o _dist/ src/ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib.csproj
26
+ # cache:
27
+ # directories:
28
+ # - bin
29
+ # - Documentation
20
30
# deploy:
21
31
# provider: releases
22
32
# api_key: "GITHUB OAUTH TOKEN"
You can’t perform that action at this time.
0 commit comments