From 5a16d28ee637141c037a9aa0b92dc1b80a9787b3 Mon Sep 17 00:00:00 2001 From: Glenn Block Date: Tue, 6 Sep 2016 00:34:35 -0700 Subject: [PATCH 1/2] Fixes #1172 and #1173 --- .travis.yml | 3 ++- build.sh | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index db24c598..18601162 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,7 @@ sudo: false language: csharp - +mono: + - 4.2.3 install: - nuget restore ./ScriptCs.sln diff --git a/build.sh b/build.sh index 41b4f391..ca236de4 100755 --- a/build.sh +++ b/build.sh @@ -10,6 +10,6 @@ mono ./.nuget/NuGet.exe restore ./ScriptCs.sln # script mkdir -p artifacts/Release/bin xbuild ./ScriptCs.sln /property:Configuration=Release /nologo /verbosity:normal -cp src/*/bin/Release/* artifacts/Release/bin/ +cp src/Scriptcs/bin/Release/* artifacts/Release/bin/ mono ./packages/xunit.runners.1.9.2/tools/xunit.console.clr4.exe test/ScriptCs.Tests.Acceptance/bin/Release/ScriptCs.Tests.Acceptance.dll /xml artifacts/ScriptCs.Tests.Acceptance.dll.TestResult.xml /html artifacts/ScriptCs.Tests.Acceptance.dll.TestResult.html From 1271b556e4efea52f1f65849d0ea8f7f53689f6c Mon Sep 17 00:00:00 2001 From: Glenn Block Date: Tue, 6 Sep 2016 00:45:53 -0700 Subject: [PATCH 2/2] Fix case --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index ca236de4..3aa92e4f 100755 --- a/build.sh +++ b/build.sh @@ -10,6 +10,6 @@ mono ./.nuget/NuGet.exe restore ./ScriptCs.sln # script mkdir -p artifacts/Release/bin xbuild ./ScriptCs.sln /property:Configuration=Release /nologo /verbosity:normal -cp src/Scriptcs/bin/Release/* artifacts/Release/bin/ +cp src/ScriptCs/bin/Release/* artifacts/Release/bin/ mono ./packages/xunit.runners.1.9.2/tools/xunit.console.clr4.exe test/ScriptCs.Tests.Acceptance/bin/Release/ScriptCs.Tests.Acceptance.dll /xml artifacts/ScriptCs.Tests.Acceptance.dll.TestResult.xml /html artifacts/ScriptCs.Tests.Acceptance.dll.TestResult.html