Browse Source

Merge pull request #595 from wieslawsoltes/TraisCISupportForMacOSX

Added initial osx support to TravisCI build matrix
pull/597/head
Steven Kirk 10 years ago
committed by GitHub
parent
commit
2b7ed4eeb7
  1. 5
      .travis.yml

5
.travis.yml

@ -1,4 +1,7 @@
language: csharp language: csharp
os:
- linux
- osx
mono: mono:
- nightly - nightly
solution: Avalonia.mono.sln solution: Avalonia.mono.sln
@ -6,7 +9,7 @@ before_install:
- mkdir -p .nuget - mkdir -p .nuget
- wget -O .nuget/nuget.exe https://dist.nuget.org/win-x86-commandline/latest/nuget.exe - wget -O .nuget/nuget.exe https://dist.nuget.org/win-x86-commandline/latest/nuget.exe
install: 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 restore Avalonia.mono.sln
- mono .nuget/nuget.exe install xunit.runner.console -Version 2.1.0 -OutputDirectory testrunner - mono .nuget/nuget.exe install xunit.runner.console -Version 2.1.0 -OutputDirectory testrunner
script: script:

Loading…
Cancel
Save