This commit is contained in:
TomPallister 2016-10-12 21:08:06 +01:00
parent d78dc2847e
commit 1fcc0c20d3
4 changed files with 2 additions and 17 deletions

View File

@ -3,9 +3,9 @@ configuration:
- Release - Release
platform: Any CPU platform: Any CPU
build_script: build_script:
- build.sh - build.bat
test_script: test_script:
- run-tests.sh - run-tests.bat
artifacts: artifacts:
- path: artifacts\**\*.* - path: artifacts\**\*.*
cache: cache:

0
build.sh → build.bat Executable file → Normal file
View File

0
run-benchmarks.sh → run-benchmarks.bat Executable file → Normal file
View File

View File

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