From 6c200e11e5b8b4be428ef6a85e80c5e138a7643a Mon Sep 17 00:00:00 2001 From: Donovan Finch Date: Wed, 15 Jul 2015 20:52:57 -0700 Subject: [PATCH] (maint) Specify mono version for Travis-CI This allows the build to compile but still fails on NUnit tests. @sideeffffect determined in GH-369 that there may be a bug in the most recent mono and has filed an issue at [Xamarin Bugzilla #32561](https://bugzilla.xamarin.com/show_bug.cgi?id=32561). Prefer 3.12.0 which gets the [latest in the 3.12.X line](https://github.com/travis-ci/travis-ci/issues/4130). Related Travis Doc - [Choosing mono version](http://docs.travis-ci.com/user/languages/csharp/#Choosing-Mono-version-to-test-against) --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index d3536bc61f..2676361602 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,6 @@ language: csharp +mono: + - 3.12.0 install: - sudo apt-get install mono-devel mono-gmcs - nuget restore src/chocolatey.sln