From 42c6f81ee3ac87c321ff5c1eb4f71748cc9a9e52 Mon Sep 17 00:00:00 2001 From: donsizemore Date: Wed, 10 Apr 2019 11:57:00 -0400 Subject: [PATCH] add initial continuous integration section --- doc/sphinx-guides/source/developers/testing.rst | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/doc/sphinx-guides/source/developers/testing.rst b/doc/sphinx-guides/source/developers/testing.rst index e8d8af70940..2e8f5be5988 100755 --- a/doc/sphinx-guides/source/developers/testing.rst +++ b/doc/sphinx-guides/source/developers/testing.rst @@ -224,6 +224,17 @@ One way of generating load is by downloading many files. You can download :downl The script requires a file called ``files.txt`` to operate and database IDs for the files you want to download should each be on their own line. +Continuous Integration +~~~~~~~~~~~~~~~~~~~~~~ + +The Dataverse Project currently makes use of two Continuous Integration platforms, Travis and Jenkins. + +Travis builds are configured via :download:`.travis.yml <../../../../.travis.yml>` and a `GitHub webhook `; build output is viewable at https://travis-ci.org/IQSS/dataverse/builds + +Our Jenkins config is a work in progress and may be viewed at https://github.com/IQSS/dataverse-jenkins/ A corresponding GitHub webhook is required. Build output is viewable at https://jenkins.dataverse.org/ + +As always, pull requests to improve our continuous integration configurations are welcome. + The Phoenix Server ------------------