Travis: Misc improvements (#863)

* Test

* Test
This commit is contained in:
Łukasz Domeradzki
2018-07-23 05:20:04 +02:00
committed by GitHub
parent 2556debd9a
commit 8f66207bd5

View File

@@ -23,17 +23,17 @@ env:
before_script:
- |
set -e
set -eu
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
ulimit -n 1024
fi
dotnet --info
set +u # This is needed to continue Travis build
script:
- |
set -e
set -eu
dotnet build ArchiSteamFarm -c "$CONFIGURATION" -f "$NET_CORE_VERSION" -o 'out/source' /nologo
dotnet test ArchiSteamFarm.Tests -c "$CONFIGURATION" -f "$NET_CORE_VERSION" -o 'out/source' /nologo
@@ -60,7 +60,7 @@ script:
done
wait
set +u # This is needed to continue Travis build
matrix:
# We can use fast finish, as we don't need to wait for allow_failures builds to mark build as success
fast_finish: true