-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
70 lines (70 loc) · 3.34 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
language: csharp
sudo: false
dist: trusty
mono: none
dotnet: 1.0.4
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
os:
- linux
- osx
osx_image: xcode8.3
script:
- cd cloudscribe-core-ef/netcore1
- if test "$TRAVIS_OS_NAME" == "linux"; then dotnet restore; fi
- if test "$TRAVIS_OS_NAME" == "osx"; then dotnet restore --disable-parallel; fi
- dotnet build -c Release
- cd ../../cloudscribe-core-ef-mysql/netcore1
- if test "$TRAVIS_OS_NAME" == "linux"; then dotnet restore; fi
- if test "$TRAVIS_OS_NAME" == "osx"; then dotnet restore --disable-parallel; fi
- dotnet build -c Release
- cd ../../cloudscribe-core-ef-pgsql/netcore1
- if test "$TRAVIS_OS_NAME" == "linux"; then dotnet restore; fi
- if test "$TRAVIS_OS_NAME" == "osx"; then dotnet restore --disable-parallel; fi
- dotnet build -c Release
- cd ../../cloudscribe-core-nodb/netcore1
- if test "$TRAVIS_OS_NAME" == "linux"; then dotnet restore; fi
- if test "$TRAVIS_OS_NAME" == "osx"; then dotnet restore --disable-parallel; fi
- dotnet build -c Release
- cd ../../cloudscribe-idserver-ef/netcore1
- if test "$TRAVIS_OS_NAME" == "linux"; then dotnet restore; fi
- if test "$TRAVIS_OS_NAME" == "osx"; then dotnet restore --disable-parallel; fi
- dotnet build -c Release
- cd ../../cloudscribe-idserver-ef-mysql/netcore1
- if test "$TRAVIS_OS_NAME" == "linux"; then dotnet restore; fi
- if test "$TRAVIS_OS_NAME" == "osx"; then dotnet restore --disable-parallel; fi
- dotnet build -c Release
- cd ../../cloudscribe-idserver-ef-pgsql/netcore1
- if test "$TRAVIS_OS_NAME" == "linux"; then dotnet restore; fi
- if test "$TRAVIS_OS_NAME" == "osx"; then dotnet restore --disable-parallel; fi
- dotnet build -c Release
- cd ../../cloudscribe-idserver-nodb/netcore1
- if test "$TRAVIS_OS_NAME" == "linux"; then dotnet restore; fi
- if test "$TRAVIS_OS_NAME" == "osx"; then dotnet restore --disable-parallel; fi
- dotnet build -c Release
- cd ../../SimpleContent-cloudscribecore-ef/netcore1
- if test "$TRAVIS_OS_NAME" == "linux"; then dotnet restore; fi
- if test "$TRAVIS_OS_NAME" == "osx"; then dotnet restore --disable-parallel; fi
- dotnet build -c Release
- cd ../../SimpleContent-cloudscribecore-ef-mysql/netcore1
- if test "$TRAVIS_OS_NAME" == "linux"; then dotnet restore; fi
- if test "$TRAVIS_OS_NAME" == "osx"; then dotnet restore --disable-parallel; fi
- dotnet build -c Release
- cd ../../SimpleContent-cloudscribecore-ef-pgsql/netcore1
- if test "$TRAVIS_OS_NAME" == "linux"; then dotnet restore; fi
- if test "$TRAVIS_OS_NAME" == "osx"; then dotnet restore --disable-parallel; fi
- dotnet build -c Release
- cd ../../SimpleContent-cloudscribecore-nodb/netcore1
- if test "$TRAVIS_OS_NAME" == "linux"; then dotnet restore; fi
- if test "$TRAVIS_OS_NAME" == "osx"; then dotnet restore --disable-parallel; fi
- dotnet build -c Release
- cd ../../SimpleContent-SimpleAuth-nodb/netcore1
- if test "$TRAVIS_OS_NAME" == "linux"; then dotnet restore; fi
- if test "$TRAVIS_OS_NAME" == "osx"; then dotnet restore --disable-parallel; fi
- dotnet build -c Release
- cd ../../SimpleContent-SimpleAuth-nodb-multitenant/netcore1
- if test "$TRAVIS_OS_NAME" == "linux"; then dotnet restore; fi
- if test "$TRAVIS_OS_NAME" == "osx"; then dotnet restore --disable-parallel; fi
- dotnet build -c Release