forked from ralmsdeveloper/EntityFrameworkCore.FirebirdSQL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
32 lines (27 loc) · 746 Bytes
/
.travis.yml
File metadata and controls
32 lines (27 loc) · 746 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
language: csharp
mono: none
dotnet: 2.0.0
dist: trusty
sudo: required
services:
- docker
branches:
only:
- master
- release
- dev
- /^.*-wip$/
- /^(.*\/)?ci-.*$/
before_install:
- docker run -d --name firebird -p 3050:3050 almeida/firebird
- docker run -v $(pwd):/dotnet/:rw -e 'CI=True' --name dotnet --link firebird:firebird -d microsoft/dotnet:2.0.0-sdk sh -c 'while true; do sleep 0.1; done'
script:
- docker exec -it dotnet sh -c 'cd /dotnet && dotnet restore'
- docker exec -it dotnet sh -c 'cd /dotnet && dotnet build -c Release'
notifications:
email:
recipients:
- jean.ressouche@souchprod.com
- ralms@ralms.net
on_success: always
on_failure: always