[ARVADOS] updated: 1.1.1-140-g6fae327

Git user git at public.curoverse.com
Fri Dec 1 15:42:09 EST 2017


Summary of changes:
 build/run-build-packages-one-target.sh      | 6 +++++-
 build/run-build-test-packages-one-target.sh | 6 +++---
 2 files changed, 8 insertions(+), 4 deletions(-)

       via  6fae327f04d04cb5cceaa79082e43610fbecf989 (commit)
      from  232599dd878dba65f5c4264452cbd6f2594f62d6 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit 6fae327f04d04cb5cceaa79082e43610fbecf989
Author: Fernando Monserrat <fernando.monserrat at gmail.com>
Date:   Fri Dec 1 17:41:58 2017 -0300

    12771: fix for add version as param
    Arvados-DCO-1.1-Signed-off-by: Fernando Monserrat <fmonserrat at veritasgenetics.com>

diff --git a/build/run-build-packages-one-target.sh b/build/run-build-packages-one-target.sh
index 9aa55ef..8099a70 100755
--- a/build/run-build-packages-one-target.sh
+++ b/build/run-build-packages-one-target.sh
@@ -21,6 +21,7 @@ Syntax:
     Build only a specific package
 --only-test <package>
     Test only a specific package
+--verno <verno>    
 
 WORKSPACE=path         Path to the Arvados source tree to build packages from
 
@@ -45,7 +46,7 @@ if ! [[ -d "$WORKSPACE" ]]; then
 fi
 
 PARSEDOPTS=$(getopt --name "$0" --longoptions \
-    help,debug,test-packages,target:,command:,only-test:,only-build: \
+    help,debug,test-packages,target:,command:,only-test:,only-build:,verno: \
     -- "" "$@")
 if [ $? -ne 0 ]; then
     exit 1
@@ -73,6 +74,9 @@ while [ $# -gt 0 ]; do
         --only-build)
             ONLY_BUILD="$2"; shift
             ;;
+        --verno)
+            VERNO="$2"; shift 
+            ;;    
         --debug)
             DEBUG=" --debug"
             ARVADOS_DEBUG="1"
diff --git a/build/run-build-test-packages-one-target.sh b/build/run-build-test-packages-one-target.sh
index ba9641a..59e7309 100755
--- a/build/run-build-test-packages-one-target.sh
+++ b/build/run-build-test-packages-one-target.sh
@@ -58,7 +58,7 @@ while [ $# -gt 0 ]; do
             TARGET="$2"; shift 
             ;;
         --verno)
-            export VERNO="$2"; shift 
+            VERNO="$2"; shift 
             ;;      
         --upload)
             UPLOAD=1
@@ -85,7 +85,7 @@ COLUMNS=80
 title "Start build packages"
 timer_reset
 
-$WORKSPACE/build/run-build-packages-one-target.sh --target $TARGET
+$WORKSPACE/build/run-build-packages-one-target.sh --target $TARGET --verno $VERNO
 
 checkexit $? "build packages"
 title "End of build packages (`timer`)"
@@ -94,7 +94,7 @@ title "Start test packages"
 timer_reset
 
 if [ ${#failures[@]} -eq 0 ]; then
-  $WORKSPACE/build/run-build-packages-one-target.sh --target $TARGET --test-packages
+  $WORKSPACE/build/run-build-packages-one-target.sh --target $TARGET --test-packages --verno $VERNO
 else
   echo "Skipping package upload, there were errors building the packages"
 fi

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list