forked from SOCI/soci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
38 lines (32 loc) · 865 Bytes
/
.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
# .travis.yml
# Configure Travis CI service to build SOCI library
# Mateusz Loskot <[email protected]>, http://github.com/SOCI
#
language: cpp
# Testing against two compilers will create (at least) 2 rows in build matrix
# http://about.travis-ci.org/docs/user/languages/cpp/
compiler:
- g++
- clang
branches:
only:
- develop
- master
- /^release\/[0-9]\.[0-9]\.[0-9]$/
- /^hotfix\/[0-9]\.[0-9]\.[0-9]$/
services:
- mysql
- postgresql
before_install: ./bin/ci/before_install.sh
before_script: ./bin/ci/before_script.sh
script: ./bin/ci/script.sh
notifications:
email:
recipients:
on_success: change # [always|never|change] # default: change
on_failure: always # [always|never|change] # default: always
irc:
channels:
- "irc.freenode.org#soci"