You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@yetus.apache.org by aw...@apache.org on 2017/05/17 20:23:48 UTC

yetus git commit: YETUS-506. Enhance maven_reorder_module_process to handle modules where directory name is different than the artifactId

Repository: yetus
Updated Branches:
  refs/heads/master 2971eff54 -> dc15e9973


YETUS-506. Enhance maven_reorder_module_process to handle modules where directory name is different than the artifactId

Signed-off-by: Allen Wittenauer <aw...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/yetus/repo
Commit: http://git-wip-us.apache.org/repos/asf/yetus/commit/dc15e997
Tree: http://git-wip-us.apache.org/repos/asf/yetus/tree/dc15e997
Diff: http://git-wip-us.apache.org/repos/asf/yetus/diff/dc15e997

Branch: refs/heads/master
Commit: dc15e9973eee87824ded3146acc58edf0015592e
Parents: 2971eff
Author: Peter Vary <pv...@cloudera.com>
Authored: Mon May 15 17:32:45 2017 +0200
Committer: Allen Wittenauer <aw...@apache.org>
Committed: Wed May 17 13:23:34 2017 -0700

----------------------------------------------------------------------
 precommit/test-patch.d/maven.sh | 30 +++++++++---------------------
 1 file changed, 9 insertions(+), 21 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/yetus/blob/dc15e997/precommit/test-patch.d/maven.sh
----------------------------------------------------------------------
diff --git a/precommit/test-patch.d/maven.sh b/precommit/test-patch.d/maven.sh
index 3d37c37..dcefdd4 100755
--- a/precommit/test-patch.d/maven.sh
+++ b/precommit/test-patch.d/maven.sh
@@ -581,7 +581,6 @@ function maven_reorder_module_process
   declare indexn
   declare -a newlist
   declare fn
-  declare basemod
   declare needroot=false
   declare found
 
@@ -594,33 +593,20 @@ function maven_reorder_module_process
   fn=$(module_file_fragment "${CHANGED_UNION_MODULES}")
   pushd "${BASEDIR}/${CHANGED_UNION_MODULES}" >/dev/null
 
-  # get the output of validate
-  # this *should* be pretty darn close to the correct order
+  # get the module directory list in the correct order based on maven dependencies
   # shellcheck disable=SC2046
-  echo_and_redirect "${PATCH_DIR}/maven-${repostatus}-validate-${fn}.txt" \
-    $("${BUILDTOOL}_executor") validate
+  echo_and_redirect "${PATCH_DIR}/maven-${repostatus}-dirlist-${fn}.txt" \
+    $("${BUILDTOOL}_executor") "-q" "exec:exec" "-Dexec.executable=pwd" "-Dexec.args=''"
 
   while read -r line; do
-    if [[ ${line} =~ ^module: ]]; then
-      module=${line##module:}
-    else
-      continue
-    fi
     for indexm in "${CHANGED_MODULES[@]}"; do
-      # modules could be foo/bar, where bar is the artifactid
-      # so get the basename and compare that too
-      basemod="${indexm##*/}"
-      if [[ "${module}" = "${indexm}"
-         || "${module}" = "${basemod}" ]]; then
-         yetus_debug "mrm: placing ${indexm}"
+      if [[ ${line} == "${BASEDIR}/${indexm}" ]]; then
+        yetus_debug "mrm: placing ${indexm} from dir: ${line}"
         newlist=("${newlist[@]}" "${indexm}")
         break
       fi
     done
-  done < <(${GREP} '\[INFO\]' \
-      "${PATCH_DIR}/maven-${repostatus}-validate-${fn}.txt" |
-    ${SED} -e 's,^.* --- .* @ \(.*\) ---$,module:\1,g' -e '/^\[INFO\]/d' |
-    uniq )
+  done < "${PATCH_DIR}/maven-${repostatus}-dirlist-${fn}.txt"
   popd >/dev/null
 
   if [[ "${needroot}" = true ]]; then
@@ -672,7 +658,7 @@ function maven_reorder_modules
     return
   fi
 
-  big_console_header "Determining Maven Dependency Order"
+  big_console_header "Determining Maven Dependency Order (downloading dependencies in the process)"
 
   start_clock
 
@@ -696,4 +682,6 @@ function maven_reorder_modules
   else
     add_vote_table 0 mvndep "Maven dependency ordering"
   fi
+
+  echo "Elapsed: $(clock_display $(stop_clock))"
 }