Skip to content

Commit

Permalink
Fix run_perf_tests.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
adamchester committed Mar 8, 2017
1 parent e674726 commit 3a46862
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions run_perf_tests.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
#!/bin/bash
dotnet restore
for path in src/*/project.json; do
dirname="$(dirname "${path}")"
dotnet build ${dirname} -c Release
done
for path in test/Serilog.PerformanceTests/project.json; do
dirname="$(dirname "${path}")"
dotnet test ${dirname} -f netcoreapp1.0 -c Release
done

for path in test/*.PerformanceTests/*.csproj; do
dotnet test -f netcoreapp1.1 -c Release ${path}
done

0 comments on commit 3a46862

Please sign in to comment.