From 96e3e8584856f2a284897d9b6c09f32097526a93 Mon Sep 17 00:00:00 2001 From: Evan Hemsley <2342303+ehemsley@users.noreply.github.com> Date: Wed, 19 Jun 2019 22:53:10 -0700 Subject: [PATCH 1/2] travis --- .travis.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..2ff0102 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,9 @@ +language: csharp +solution: encompass-cs.sln + +install: + - nuget restore encompass-cs.sln + - nuget install NUnit.Console -OutputDirectory testrunner +script: + - msbuild /p:Configuration=Release -Version 3.9.0 encompass-cs.sln + - mono ./testrunner/NUnit.ConsoleRunner.3.9.0/tools/nunit3-console.exe ./test/bin/Release/netcoreapp2.2/encompass-cs.dll From 8c3275fb4abb2631038377e83f1cca3812445f64 Mon Sep 17 00:00:00 2001 From: Evan Hemsley <2342303+ehemsley@users.noreply.github.com> Date: Wed, 19 Jun 2019 23:07:03 -0700 Subject: [PATCH 2/2] travis xenial --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 2ff0102..244414e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,4 @@ +dist: xenial language: csharp solution: encompass-cs.sln