-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
29 lines (26 loc) · 761 Bytes
/
.travis.yml
File metadata and controls
29 lines (26 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# language: c
# before_install:
# Make sure mono is installed,
# pipe stdout to dev/null because qq is still too chatty
# - sudo apt-get update -qq > /dev/null
# - sudo apt-get install -qq mono-devel > /dev/null
# - mozroots --import --sync
#
# env:
# - EnableNuGetPackageRestore=true
#
# script:
# - xbuild
language: objective-c
env:
global:
- EnableNuGetPackageRestore=true
matrix:
- MONO_VER="4.6.0"
before_install:
- wget "http://download.mono-project.com/archive/${MONO_VER}/macos-10-universal/MonoFramework-MDK-${MONO_VER}.macos10.xamarin.universal.pkg
- sudo installer -pkg "MonoFramework-MDK-${MONO_VER}.macos10.xamarin.universal.pkg" -target /
script:
- xbuild src/CI.sln
- chmod a+x .ci/nunit.sh
- .ci/nunit.sh bin/Net.Tests.dll