forked from OpenTelecom/kazoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
39 lines (32 loc) · 792 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
39
language: erlang
notifications:
email:
- engineering@2600hz.com
- operations@2600hz.com
irc:
channels:
- "irc.freenode.org#2600hz-dev"
otp_release:
- 18.2
- 19.1
sudo: false
addons:
apt:
packages:
- xsltproc
cache:
apt: true
directories:
- $HOME/proper
before_install:
- set -e
- if [[ ! -d $HOME/proper/.git ]]; then git clone --depth=50 --branch=master https://github.com/manopapad/proper.git $HOME/proper && cd $HOME/proper && make fast; fi
- cd $TRAVIS_BUILD_DIR
script:
- # make compile-test
- # make eunit
- make deps
- ERL_LIBS="$HOME/proper" ERLC_OPTS='-DPROPER' make compile-test
- ERL_LIBS="$HOME/proper" make eunit
after_success:
- if [[ "$TRAVIS_REPO_SLUG" == '2600hz/kazoo' ]]; then make coverage-report; fi