Skip to content

Commit 290e4ff

Browse files
carlosmnnulltoken
authored andcommitted
Use mono 3.6
1 parent 204b684 commit 290e4ff

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ os:
1010
before_install:
1111
- date -u
1212
- uname -a
13+
- export PATH=/opt/mono/bin:$PATH
1314
- env | sort
1415

1516
# Make sure CMake and Mono are installed

CI/travis.linux.install.deps.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
#!/bin/bash
22
set -ev
33

4-
sudo apt-get install cmake mono-devel mono-gmcs
4+
sudo sh -c "echo 'deb http://download.opensuse.org/repositories/home:/tpokorra:/mono/xUbuntu_12.04/ /' >> /etc/apt/sources.list.d/mono-opt.list"
5+
6+
curl http://download.opensuse.org/repositories/home:/tpokorra:/mono/xUbuntu_12.04/Release.key | sudo apt-key add -
7+
8+
sudo apt-get update
9+
sudo apt-get install mono-opt cmake

CI/travis.osx.install.deps.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
#!/bin/bash
22
set -ev
33

4-
MONO_VER=2.10.10
4+
MONO_VER=3.6.0
55

66
brew update
77
which cmake || brew install cmake
88

9-
wget "http://download.mono-project.com/archive/${MONO_VER}/macos-10-x86/MonoFramework-MDK-${MONO_VER}.macos10.xamarin.x86.dmg"
10-
hdid "MonoFramework-MDK-${MONO_VER}.macos10.xamarin.x86.dmg"
11-
sudo installer -pkg "/Volumes/Mono Framework MDK ${MONO_VER}/MonoFramework-MDK-${MONO_VER}.macos10.xamarin.x86.pkg" -target /
9+
wget "http://download.mono-project.com/archive/${MONO_VER}/macos-10-x86/MonoFramework-MDK-${MONO_VER}.macos10.xamarin.x86.pkg"
10+
sudo installer -pkg "MonoFramework-MDK-${MONO_VER}.macos10.xamarin.x86.pkg" -target /

0 commit comments

Comments
 (0)