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 ../../ -