File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ pipeline {
3030 skipDefaultCheckout()
3131 }
3232 environment {
33- YETUS_RELEASE = ' 0.9 .0'
33+ YETUS_RELEASE = ' 0.11 .0'
3434 // where we'll write everything from different steps. Need a copy here so the final step can check for success/failure.
3535 OUTPUT_DIR_RELATIVE_GENERAL = ' output-general'
3636 OUTPUT_DIR_RELATIVE_JDK7 = ' output-jdk7'
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ pipeline {
3737 DOCKERFILE = "${SOURCEDIR}/dev-support/docker/Dockerfile"
3838 YETUS='yetus'
3939 // Branch or tag name. Yetus release tags are 'rel/X.Y.Z'
40- YETUS_VERSION='rel/0.10 .0'
40+ YETUS_VERSION='rel/0.11 .0'
4141 }
4242
4343 parameters {
@@ -151,7 +151,6 @@ pipeline {
151151 YETUS_ARGS+=("--docker")
152152 YETUS_ARGS+=("--dockerfile=${DOCKERFILE}")
153153 YETUS_ARGS+=("--mvn-custom-repos")
154- YETUS_ARGS+=("--jenkins")
155154 YETUS_ARGS+=("--multijdkdirs=/usr/lib/jvm/java-8-openjdk-amd64")
156155 YETUS_ARGS+=("--findbugs-home=/usr")
157156 YETUS_ARGS+=("--whitespace-eol-ignore-list=.*/generated/.*")
@@ -160,9 +159,11 @@ pipeline {
160159 YETUS_ARGS+=("--quick-hadoopcheck")
161160 YETUS_ARGS+=("--skip-errorprone")
162161 # effectively treat dev-support as a custom maven module
163- YETUS_ARGS+=("--skip-dir =dev-support")
162+ YETUS_ARGS+=("--skip-dirs =dev-support")
164163 # help keep the ASF boxes clean
165164 YETUS_ARGS+=("--sentinel")
165+ # use emoji vote so it is easier to find the broken line
166+ YETUS_ARGS+=("--github-use-emoji-vote")
166167 "${TESTPATCHBIN}" "${YETUS_ARGS[@]}"
167168 '''
168169 }
Original file line number Diff line number Diff line change @@ -86,15 +86,19 @@ function personality_parse_args
8686 for i in " $@ " ; do
8787 case ${i} in
8888 --exclude-tests-url=* )
89+ delete_parameter " ${i} "
8990 EXCLUDE_TESTS_URL=${i#* =}
9091 ;;
9192 --include-tests-url=* )
93+ delete_parameter " ${i} "
9294 INCLUDE_TESTS_URL=${i#* =}
9395 ;;
9496 --hadoop-profile=* )
97+ delete_parameter " ${i} "
9598 HADOOP_PROFILE=${i#* =}
9699 ;;
97100 --skip-errorprone)
101+ delete_parameter " ${i} "
98102 SKIP_ERRORPRONE=true
99103 ;;
100104 esac
@@ -461,6 +465,7 @@ function hadoopcheck_parse_args
461465 for i in " $@ " ; do
462466 case ${i} in
463467 --quick-hadoopcheck)
468+ delete_parameter " ${i} "
464469 QUICK_HADOOPCHECK=true
465470 ;;
466471 esac
You can’t perform that action at this time.
0 commit comments