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 set -e
# Ensure no compile errors in all projects # Ensure no compile errors in all projects
dotnet restore find . -name *.csproj -exec dotnet build {} \;
dotnet build --no-restore
# Execute Unit tests # Execute Unit tests
cd tests cd tests
dotnet test --no-restore --no-build dotnet restore
if [[ $? != 0 ]]; then dotnet test
exit 1
fi