Created
December 1, 2017 19:03
-
-
Save bruno-garcia/47dd3a3cc379ff737a7f3687966995a4 to your computer and use it in GitHub Desktop.
.NET Core Travis-CI build configuration (Greentube.Messaging)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: csharp | |
sudo: false | |
mono: none | |
os: | |
- linux | |
- osx | |
osx_image: xcode8.1 | |
dotnet: 2.0.0 | |
dist: trusty | |
env: | |
global: | |
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true | |
- DOTNET_CLI_TELEMETRY_OPTOUT=1 | |
script: | |
- ulimit -n 512; dotnet restore && ls test/**/*.csproj | grep -v 'Greentube.Messaging.Testing' | xargs -L1 dotnet test -c Release |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment