forked from lycus/flect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
45 lines (45 loc) · 1.05 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
language: erlang
otp_release:
- R15B
- R15B01
- R15B02
- R15B03
- R16B
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq clang time
- export PATH=`pwd`/elixir/bin:`pwd`/exdoc/bin:$PATH
- git clone http://github.com/elixir-lang/elixir
- cd elixir
- make
- cd ..
- git clone http://github.com/elixir-lang/exdoc
- cd exdoc
- make
- mix compile
- cd ..
- git submodule update --init --recursive
script:
- cp ci/travis.clang.config.mak config.mak
- make ebin
- make escript
- make test
- make docs
- make distclean
- cp ci/travis.gcc.config.mak config.mak
- make ebin
- make escript
- make test
- make docs
- make distclean
notifications:
irc:
channels:
- "irc.oftc.net#flect"
template:
- "[%{build_number}] %{repository} (%{commit} by %{author}): %{message} - %{build_url}"
on_success: change
on_failure: always
use_notice: false
skip_join: true
email: false