Repository: couchdb-ci Updated Branches: refs/heads/master 0a6b50bb0 -> fab1898af
add Travis build check Project: http://git-wip-us.apache.org/repos/asf/couchdb-ci/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-ci/commit/fab1898a Tree: http://git-wip-us.apache.org/repos/asf/couchdb-ci/tree/fab1898a Diff: http://git-wip-us.apache.org/repos/asf/couchdb-ci/diff/fab1898a Branch: refs/heads/master Commit: fab1898affcd52616baf2546333a7f3f5bab4a98 Parents: 0a6b50b Author: Joan Touzet <[email protected]> Authored: Fri Oct 13 22:23:03 2017 -0700 Committer: Joan Touzet <[email protected]> Committed: Fri Oct 13 22:23:03 2017 -0700 ---------------------------------------------------------------------- .travis.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-ci/blob/fab1898a/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..9b8fd49 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,24 @@ +sudo: required + +services: + - docker + +env: + matrix: + - OS=centos-6 + - OS=centos-7 + - OS=debian-8 + - OS=debian-9 + - OS=ubuntu-14.04 + - OS=ubuntu-16.04 + +before_script: + - docker --version + +script: + - find bin/${OS}-base -type d -exec {}/create-container.sh \; + - find bin/${OS}-erlang* -type d -exec {}/create-container.sh \; + +after_script: + - bin/cleanup-docker.sh +
