revert changes to ci.sh in c0a42ad884 (#125)

This commit is contained in:
Boshi Lian
2018-04-03 12:35:32 +08:00
committed by Brendan Burns
parent d20e2597b9
commit dc97164332

9
ci.sh
View File

@@ -4,12 +4,9 @@
set -e
# Ensure no compile errors in all projects
dotnet restore
dotnet build --no-restore
find . -name *.csproj -exec dotnet build {} \;
# Execute Unit tests
cd tests
dotnet test --no-restore --no-build
if [[ $? != 0 ]]; then
exit 1
fi
dotnet restore
dotnet test