Skip to content

Commit

Permalink
Plant CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Luca Favatella committed Mar 6, 2017
1 parent 7761535 commit 50f2081
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
sudo: false
language: erlang
otp_release:
- 19.2
- 18.3
before_install:
- ./ci before_install "${PWD:?}"/rebar3
install:
- ./ci install "${PWD:?}"/rebar3
script:
- ./ci script "${PWD:?}"/rebar3
cache:
directories:
- .plt
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Sumo Rest

[![Build Status](https://travis-ci.org/inaka/sumo_rest.svg?branch=master)](https://travis-ci.org/inaka/sumo_rest)

<img src="http://www.technovelgy.com/graphics/content/sumo_robot.jpg" align="right" style="float:right" height="400" />

Generic **Cowboy** handlers to work with **Sumo DB**
Expand Down
21 changes: 21 additions & 0 deletions ci
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/bin/bash

set -ev # Ref https://docs.travis-ci.com/user/customizing-the-build/#Implementing-Complex-Build-Steps

case "${1:?}" in
before_install)
## Travis CI does not support rebar3 yet. See https://github.com/travis-ci/travis-ci/issues/6506#issuecomment-275189490
Rebar3="${2:?}"
curl -f -L -o "${Rebar3:?}" https://github.com/erlang/rebar3/releases/download/3.3.5/rebar3
chmod +x "${Rebar3:?}"
;;
install)
Rebar3="${2:?}"
"${Rebar3:?}" deps
"${Rebar3:?}" dialyzer -u true -s false
;;
script)
Rebar3="${2:?}"
"${Rebar3:?}" ct
;;
esac

0 comments on commit 50f2081

Please sign in to comment.