Fix inverted test for pypi/gem upload logic. Make upload more verbose.
authorWard Vandewege <ward@curoverse.com>
Mon, 2 May 2016 21:29:30 +0000 (17:29 -0400)
committerWard Vandewege <ward@curoverse.com>
Mon, 2 May 2016 21:29:30 +0000 (17:29 -0400)
No issue #

build/run-build-packages-python-and-ruby.sh

index e7981e59672c3e62d28000d9e2a0c308e178d598..23ddc9a94f36b20e4ca615eb8d4e8784590ad5ec 100755 (executable)
@@ -179,8 +179,8 @@ if [[ "$UPLOAD" != 0 ]]; then
   title "Start upload python packages"
   timer_reset
 
-  if [ "$GEM_BUILD_FAILURES" -eq 0 ]; then
-    /usr/local/arvados-dev/jenkins/run_upload_packages.py --workspace $WORKSPACE python
+  if [ "$PYTHON_BUILD_FAILURES" -eq 0 ]; then
+    /usr/local/arvados-dev/jenkins/run_upload_packages.py -v --workspace $WORKSPACE python
   else
     echo "Skipping python packages upload, there were errors building the packages"
   fi
@@ -190,8 +190,8 @@ if [[ "$UPLOAD" != 0 ]]; then
   title "Start upload ruby gems"
   timer_reset
 
-  if [ "$PYTHON_BUILD_FAILURES" -eq 0 ]; then
-    /usr/local/arvados-dev/jenkins/run_upload_packages.py --workspace $WORKSPACE gems
+  if [ "$GEM_BUILD_FAILURES" -eq 0 ]; then
+    /usr/local/arvados-dev/jenkins/run_upload_packages.py -v --workspace $WORKSPACE gems
   else
     echo "Skipping ruby gem upload, there were errors building the packages"
   fi