Skip to content

Commit 108846c

Browse files
author
Shunichi Shinohara
committed
Misc changes for travis-ci
1 parent d0dad48 commit 108846c

File tree

4 files changed

+17
-9
lines changed

4 files changed

+17
-9
lines changed

.travis.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@ language: erlang
22
notifications:
33
email: false
44
otp_release:
5+
- R15B01
6+
- R15B
7+
- R14B04
58
- R14B03
69
- R14B02
7-
- R14B01
810
branches:
911
only:
1012
- develop

Makefile

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
.PHONY: all deps compile xref eunit clean distclean qc build
22

3-
# covertool has warnigs, so compile first
4-
all: deps
5-
cd deps/covertool && ../../rebar compile
6-
@./rebar compile
7-
make xref
8-
make eunit
3+
all: deps compile-all xref eunit
94

105
deps:
116
@./rebar update-deps
127
@./rebar get-deps
138

9+
compile-all:
10+
@./rebar compile
11+
1412
compile:
1513
@./rebar compile skip_deps=true
1614

README.rst

+7
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,13 @@ Result form::
2828
History
2929
=======
3030

31+
current
32+
-------
33+
34+
:release: 20XX-XX-XX
35+
36+
- Misc changes for travis-ci
37+
3138
1.2.1
3239
-----
3340

rebar.config

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{erl_opts, [warnings_as_errors,
22
warn_export_all,
3-
warn_unused_import,
4-
warn_untyped_record]}.
3+
warn_unused_import
4+
%% warn_untyped_record
5+
]}.
56
{yrl_opts, [{verbose, true}]}.
67

78
{xref_checks, [undefined_function_calls]}.

0 commit comments

Comments
 (0)