File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ TESTS_TIMEOUT="120m" # format: http://linux.die.net/man/1/timeout
6262PR_TESTS=(
6363 " pr_merge_ability"
6464 " pr_public_classes"
65- # "pr_new_dependencies"
65+ " pr_new_dependencies"
6666)
6767
6868function post_message () {
Original file line number Diff line number Diff line change 3131ghprbActualCommit=" $1 "
3232sha1=" $2 "
3333
34+ MVN_BIN=" ` pwd` /../../build/mvn"
3435CURR_CP_FILE=" my-classpath.txt"
3536MASTER_CP_FILE=" master-classpath.txt"
3637
37- ./build/mvn clean compile dependency:build-classpath | \
38+ ${MVN_BIN} clean compile dependency:build-classpath | \
3839 sed -n -e ' /Building Spark Project Assembly/,$p' | \
3940 grep --context=1 -m 2 " Dependencies classpath:" | \
4041 head -n 3 | \
@@ -48,7 +49,7 @@ MASTER_CP_FILE="master-classpath.txt"
4849# Checkout the master branch to compare against
4950git checkout apache/master
5051
51- ./build/mvn clean compile dependency:build-classpath | \
52+ ${MVN_BIN} clean compile dependency:build-classpath | \
5253 sed -n -e ' /Building Spark Project Assembly/,$p' | \
5354 grep --context=1 -m 2 " Dependencies classpath:" | \
5455 head -n 3 | \
7475[ -f " ${MASTER_CP_FILE} " ] && rm -f " ${MASTER_CP_FILE} "
7576
7677# Clean up our mess from the Maven builds just in case
77- ./build/mvn clean
78+ ${MVN_BIN} clean
You can’t perform that action at this time.
0 commit comments