diff --git a/build.sh b/build.sh new file mode 100755 index 00000000..ae56ff00 --- /dev/null +++ b/build.sh @@ -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 + + diff --git a/run-benchmarks.sh b/run-benchmarks.sh new file mode 100755 index 00000000..6ca94700 --- /dev/null +++ b/run-benchmarks.sh @@ -0,0 +1,14 @@ + #!/bin/bash +echo ------------------------- + +echo Running Ocelot.Benchmarks + +cd test/Ocelot.Benchmarks + +dotnet run + +cd ../../ + + + + diff --git a/run-tests.sh b/run-tests.sh new file mode 100755 index 00000000..90b53058 --- /dev/null +++ b/run-tests.sh @@ -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/ + +