very simple build scripts

This commit is contained in:
Tom Gardham-Pallister 2016-08-19 22:02:13 +01:00
parent b2c1e627bb
commit 61706274b0
3 changed files with 42 additions and 0 deletions

16
build.sh Executable file
View File

@ -0,0 +1,16 @@
#!/bin/bash
echo -------------------------
echo Running Ocelot.UnitTests
dotnet test test/Ocelot.UnitTests/
echo Running Ocelot.AcceptanceTests
dotnet test test/Ocelot.AcceptanceTests/
echo Building Ocelot
dotnet publish src/Ocelot

14
run-benchmarks.sh Executable file
View File

@ -0,0 +1,14 @@
#!/bin/bash
echo -------------------------
echo Running Ocelot.Benchmarks
cd test/Ocelot.Benchmarks
dotnet run
cd ../../

12
run-tests.sh Executable file
View File

@ -0,0 +1,12 @@
#!/bin/bash
echo -------------------------
echo Running Ocelot.UnitTests
dotnet test test/Ocelot.UnitTests/
echo Running Ocelot.AcceptanceTests
dotnet test test/Ocelot.AcceptanceTests/