From 1fcc0c20d3f78709a82a455601cbc87b817fca05 Mon Sep 17 00:00:00 2001 From: TomPallister Date: Wed, 12 Oct 2016 21:08:06 +0100 Subject: [PATCH] bat --- appveyor.yml | 4 ++-- build.sh => build.bat | 0 run-benchmarks.sh => run-benchmarks.bat | 0 run-tests.sh | 15 --------------- 4 files changed, 2 insertions(+), 17 deletions(-) rename build.sh => build.bat (100%) mode change 100755 => 100644 rename run-benchmarks.sh => run-benchmarks.bat (100%) mode change 100755 => 100644 delete mode 100755 run-tests.sh diff --git a/appveyor.yml b/appveyor.yml index 5dede7d4..410c858e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -3,9 +3,9 @@ configuration: - Release platform: Any CPU build_script: -- build.sh +- build.bat test_script: -- run-tests.sh +- run-tests.bat artifacts: - path: artifacts\**\*.* cache: diff --git a/build.sh b/build.bat old mode 100755 new mode 100644 similarity index 100% rename from build.sh rename to build.bat diff --git a/run-benchmarks.sh b/run-benchmarks.bat old mode 100755 new mode 100644 similarity index 100% rename from run-benchmarks.sh rename to run-benchmarks.bat diff --git a/run-tests.sh b/run-tests.sh deleted file mode 100755 index c2a65fc7..00000000 --- a/run-tests.sh +++ /dev/null @@ -1,15 +0,0 @@ - #!/bin/bash -echo ------------------------- - -echo Running Ocelot.UnitTests - -dotnet restore test/Ocelot.UnitTests/ -dotnet test test/Ocelot.UnitTests/ - -echo Running Ocelot.AcceptanceTests - -cd test/Ocelot.AcceptanceTests/ -dotnet restore -dotnet test -cd ../../ -