From 2e272ec4f5d563d2e327d2dc80609d197bbdec26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wies=C5=82aw=20=C5=A0olt=C3=A9s?= Date: Sat, 16 Jul 2016 19:29:40 +0200 Subject: [PATCH] Added initial osx support to TravisCI build matrix --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index bff594a46a..392beb90d8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,7 @@ language: csharp +os: + - linux + - osx mono: - nightly solution: Avalonia.mono.sln @@ -6,7 +9,7 @@ before_install: - mkdir -p .nuget - wget -O .nuget/nuget.exe https://dist.nuget.org/win-x86-commandline/latest/nuget.exe install: - - sudo apt-get install -y gtk-sharp2 + - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y gtk-sharp2 ; fi - mono .nuget/nuget.exe restore Avalonia.mono.sln - mono .nuget/nuget.exe install xunit.runner.console -Version 2.1.0 -OutputDirectory testrunner script: