You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sdap.apache.org by rk...@apache.org on 2023/01/18 20:39:58 UTC

[incubator-sdap-nexus] branch master updated: Update build guide to reflect updated release file structure (#225)

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

rkk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-sdap-nexus.git


The following commit(s) were added to refs/heads/master by this push:
     new fa7b22b  Update build guide to reflect updated release file structure (#225)
fa7b22b is described below

commit fa7b22bb2542b6e0eb96d7bd1148b74fd4325737
Author: Riley Kuttruff <72...@users.noreply.github.com>
AuthorDate: Wed Jan 18 12:39:52 2023 -0800

    Update build guide to reflect updated release file structure (#225)
    
    * Guide for building docker images
    
    * TOC & refs
    
    * Verify step
    
    * Docker requirement
    
    * Switched image repos to generic sdap instead of our nexuxjpl
    
    * changelog
    
    * Explicitly defined equality for DomsPoint.
    
    This prevents the duplicate primary points from appearing in the final results by merging them in the combineByKey step.
    
    * Revert "Explicitly defined equality for DomsPoint."
    
    This reverts commit 3c01a9958d6ca825c9b794e59e69ba31108e3a05.
    
    * Pointed quickstart guide to use ASF images for CM & GI
    
    * Tarball extraction
    
    * Pointed webapp image in qs to ASF repo
    
    * Changelog
    
    * Split version vars to reflect release artifacts
    
    * Language: This guide is for SDAP not NEXUS
    
    * Renamed build directory
    
    * Pointed remaining sdap images to ASF repos
    
    * Renamed solr image to solr cloud to better match public image name
    
    * Changed repository link to ASF instead of JPL
    
    * Update changelog
    
    * Improved qs interoperability w/ locally built images
    
    * Improved qs interoperability w/ locally built images
    
    * SDAP-422: Update build guide extraction section to reflect updated release structure
    
    * Update build.rst
    
    Co-authored-by: rileykk <ri...@jpl.nasa.gov>
---
 docs/build.rst | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/docs/build.rst b/docs/build.rst
index da940c0..43a8f22 100644
--- a/docs/build.rst
+++ b/docs/build.rst
@@ -32,14 +32,24 @@ To build the necessary images, we will need to first download the latest release
 
 Now we must extract the releases to their respective directories.
 
+Create a temporary directory to extract to.
+
+.. code-block:: bash
+
+  export TMP_DIR=/tmp/SDAP-extract
+  mkdir -p ${TMP_DIR}
+
 .. note::
 
   In the following code block, make sure the versions in the filenames correspond with the versions that were downloaded.
 
 .. code-block:: bash
 
-  tar xvf apache-sdap-ingester-${INGESTER_VERSION}-src.tar.gz -C ${INGESTER_DIR}
-  tar xvf apache-sdap-nexus-${NEXUS_VERSION}-src.tar.gz -C ${NEXUS_DIR}
+  tar xvf apache-sdap-ingester-${INGESTER_VERSION}-incubating-src.tar.gz -C ${TMP_DIR}
+  tar xvf apache-sdap-nexus-${NEXUS_VERSION}-incubating-src.tar.gz -C ${TMP_DIR}
+
+  mv ${TMP_DIR}/Apache-SDAP/apache-sdap-ingester-${INGESTER_VERSION}-incubating-src/* ${INGESTER_DIR}
+  mv ${TMP_DIR}/Apache-SDAP/apache-sdap-nexus-${NEXUS_VERSION}-incubating-src/* ${NEXUS_DIR}
 
 Build Ingester Components
 =========================