-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
30 lines (30 loc) · 1.11 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
27
28
29
30
matrix:
include:
- language: csharp
mono: 5.8.0
solution: Radegast.sln
install:
- nuget restore Radegast.sln
script:
- msbuild /t:Rebuild /p:Configuration=ReleaseLinux Radegast.sln
#Travis-ci can't handle these quite right yet.
# - language: csharp
# mono: 5.8.0
# dotnet: 2.0.0
# solution: Radegast.sln
# script:
# - dotnet restore
# - dotnet build -f netstandard2.0 --runtime linux-x64
# - language: objective-c
# env:
# global:
# - MONO_VERSION=5.8.0
# install:
# - wget "http://download.mono-project.com/archive/${MONO_VERSION}/macos-10-universal/MonoFramework-MDK-${MONO_VERSION}.macos10.xamarin.universal.pkg"
# - export PATH=$PATH:/Library/Frameworks/Mono.framework/Versions/Current/bin
# - sudo installer -pkg "MonoFramework-MDK-${MONO_VERSION}.macos10.xamarin.universal.pkg" -target /
# before_script:
# - nuget restore Radegast.sln -Verbosity detailed
# - nuget update Radegast.sln -Verbosity detailed
# script:
# - xbuild /p:Configuration=ReleaseMacOS Radegast.sln