You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2019/09/10 14:35:15 UTC

[syncope] branch 2_1_X updated: [SYNCOPE-1492] Adding Docker warning

This is an automated email from the ASF dual-hosted git repository.

ilgrosso pushed a commit to branch 2_1_X
in repository https://gitbox.apache.org/repos/asf/syncope.git


The following commit(s) were added to refs/heads/2_1_X by this push:
     new 65078ae  [SYNCOPE-1492] Adding Docker warning
65078ae is described below

commit 65078ae07af34f3fc0a86c4eea130dd88499a32d
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Tue Sep 10 16:34:39 2019 +0200

    [SYNCOPE-1492] Adding Docker warning
---
 src/site/xdoc/building.xml | 25 +++++++++++++++++++++----
 1 file changed, 21 insertions(+), 4 deletions(-)

diff --git a/src/site/xdoc/building.xml b/src/site/xdoc/building.xml
index 60846b0..573beaa 100644
--- a/src/site/xdoc/building.xml
+++ b/src/site/xdoc/building.xml
@@ -47,14 +47,21 @@ under the License.
 
       <subsection name="Additional tools">
         <p>
-          The <a href="http://www.gnu.org/software/patch/patch.html">patch</a> program is needed.<br/>
-          
+          The <a href="http://www.gnu.org/software/patch/patch.html">patch</a> program is needed.
+        </p>
+        <p>
           For Debian GNU / Linux and derivatives (as Ubuntu), install with
           <source>sudo apt install patch</source>
+        </p>
+        <p>
           On RPM yum style GNU / Linux systems, install with:
           <source>sudo yum install patch</source>
+        </p>
+        <p>
           On RPM dnf style GNU / Linux systems, install with:
           <source>sudo dnf install patch</source>
+        </p>
+        <p>
           On Windows you can find it in several distributions including
           <a href="http://gnuwin32.sourceforge.net/packages/patch.htm">GNUWin32</a>
         </p>        
@@ -156,6 +163,9 @@ under the License.
         <source>$ mvn -Photswap,all</source>
 
         <h4>DBMSes</h4>
+        <div class="alert alert-warning">
+          <p>The build profiles enlisted below require <a href="https://www.docker.com/">Docker</a> to work.</p>
+        </div>
 
         <h5>PostgreSQL</h5>
         Perform the full test suite against a real <a href="http://www.postgresql.org/">PostgreSQL</a> database via
@@ -195,6 +205,14 @@ under the License.
         Perform the full test suite by deploying Syncope core in 
         <a href="http://www.wildfly.org">Wildfly</a> via
         <source>$ mvn -Pwildfly-it</source>
+        
+        <h4>Elasticsearch</h4>
+        <div class="alert alert-warning">
+          <p>This build profile require <a href="https://www.docker.com/">Docker</a> to work.</p>
+        </div>
+
+        Perform the full test suite relying on a real <a href="https://www.elastic.co/">Elasticsearch</a> instance via
+        <source>$ mvn -Pelasticsearch-it</source>
       </subsection>
       
       <subsection name="fit/console-reference">
@@ -220,8 +238,7 @@ under the License.
 
         <p>
           Once started in debug mode, the test cases can be executed as follows:
-          <source>$ cd target/enduser-test
-            $ nodejs/node/node nodejs/bin/protractor protractor-conf.js</source>
+          <source>$ cd target/enduser-test &amp;&amp; nodejs/node/node nodejs/bin/protractor protractor-conf.js</source>
           where the actual tests to be run can be selected by modifying the <code>protractor-conf.js</code> content.
         </p>