forked from jack-pappas/ExtCore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
26 lines (23 loc) · 1.65 KB
/
.travis.yml
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
language: objective-c
env:
global:
- EnableNuGetPackageRestore=true
matrix:
- MONO_VERSION="3.10.0"
install:
- wget "http://download.mono-project.com/archive/${MONO_VERSION}/macos-10-x86/MonoFramework-MDK-${MONO_VERSION}.macos10.xamarin.x86.pkg"
- sudo installer -pkg "MonoFramework-MDK-${MONO_VERSION}.macos10.xamarin.x86.pkg" -target /
- mono .nuget/NuGet.exe install NUnit.Runners -Version 2.6.3 -OutputDirectory tools
script:
- xbuild /property:Configuration="Release (net40)" ExtCore.sln
- xbuild /property:Configuration="Release (net45)" ExtCore.sln
# - xbuild /property:Configuration="Release (profile7)" ExtCore.sln
# - xbuild /property:Configuration="Release (profile47)" ExtCore.sln
# - xbuild /property:Configuration="Release (profile78)" ExtCore.sln
# - xbuild /property:Configuration="Release (profile259)" ExtCore.sln
- mono --runtime=v4.0.30319 ./tools/NUnit.Runners.2.6.3/tools/nunit-console.exe ./ExtCore.Tests/bin/net40/Release/ExtCore.Tests.dll
- mono --runtime=v4.0.30319 ./tools/NUnit.Runners.2.6.3/tools/nunit-console.exe ./ExtCore.Tests/bin/net45/Release/ExtCore.Tests.dll
# - mono --runtime=v4.0.30319 ./tools/NUnit.Runners.2.6.3/tools/nunit-console.exe ./ExtCore.Tests/bin/profile7/Release/ExtCore.Tests.dll
# - mono --runtime=v4.0.30319 ./tools/NUnit.Runners.2.6.3/tools/nunit-console.exe ./ExtCore.Tests/bin/profile47/Release/ExtCore.Tests.dll
# - mono --runtime=v4.0.30319 ./tools/NUnit.Runners.2.6.3/tools/nunit-console.exe ./ExtCore.Tests/bin/profile78/Release/ExtCore.Tests.dll
# - mono --runtime=v4.0.30319 ./tools/NUnit.Runners.2.6.3/tools/nunit-console.exe ./ExtCore.Tests/bin/profile259/Release/ExtCore.Tests.dll