Skip to content
This repository was archived by the owner on Sep 28, 2021. It is now read-only.

Commit f18abc8

Browse files
committed
Add circle configuration.
1 parent e26d738 commit f18abc8

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

circle.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
machine:
2+
environment:
3+
PATH: ${HOME}/extras/bin:${HOME}/extras/otp/18.1/bin:${PATH}
4+
dependencies:
5+
pre:
6+
- curl -O -L https://raw.githubusercontent.com/yrashk/kerl/master/kerl && chmod 755 kerl
7+
- if [ ! -d ~/extras/otp/18.1 ]; then ./kerl build 18.1 18.1; ./kerl install 18.1 ~/extras/otp/18.1; fi
8+
override:
9+
- make
10+
11+
test:
12+
override:
13+
- make eunit
14+
- make ct
15+
- make lint
16+
- make dialyzer
17+
- make xref
18+
post:
19+
- mkdir -p $CIRCLE_TEST_REPORTS/
20+
- mv TEST-*.xml $CIRCLE_TEST_REPORTS

0 commit comments

Comments
 (0)