-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
47 lines (41 loc) · 940 Bytes
/
.travis.yml
File metadata and controls
47 lines (41 loc) · 940 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Verifying yaml files: http://www.yamllint.com/ or https://github.com/adrienverge/yamllint
language: csharp
solution: GameEngineQuery.sln
branches:
only:
- master
matrix:
include:
- dotnet: 1.0.4
mono: none
os: linux
dist: trusty # Ubuntu 14.04
sudo: required
env: CONFIGURATION=Release
- dotnet: 1.0.4
mono: none
os: linux
dist: trusty
sudo: required
env: CONFIGURATION=Debug
- dotnet: 1.0.4
mono: none
os: osx
osx_image: xcode8.3
env: CONFIGURATION=Release
- dotnet: 1.0.4
mono: none
os: osx
osx_image: xcode8.3
env: CONFIGURATION=Debug
before_script:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
echo "current ulimit is `ulimit -n`...";
ulimit -n 1024;
echo "new limit `ulimit -n`";
fi
- dotnet restore
script:
- dotnet build -c $CONFIGURATION
notifications:
email: false