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 {
30
30
skipDefaultCheckout()
31
31
}
32
32
environment {
33
- YETUS_RELEASE = ' 0.9 .0'
33
+ YETUS_RELEASE = ' 0.11 .0'
34
34
// where we'll write everything from different steps. Need a copy here so the final step can check for success/failure.
35
35
OUTPUT_DIR_RELATIVE_GENERAL = ' output-general'
36
36
OUTPUT_DIR_RELATIVE_JDK7 = ' output-jdk7'
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ pipeline {
37
37
DOCKERFILE = "${SOURCEDIR}/dev-support/docker/Dockerfile"
38
38
YETUS='yetus'
39
39
// 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'
41
41
}
42
42
43
43
parameters {
@@ -151,7 +151,6 @@ pipeline {
151
151
YETUS_ARGS+=("--docker")
152
152
YETUS_ARGS+=("--dockerfile=${DOCKERFILE}")
153
153
YETUS_ARGS+=("--mvn-custom-repos")
154
- YETUS_ARGS+=("--jenkins")
155
154
YETUS_ARGS+=("--multijdkdirs=/usr/lib/jvm/java-8-openjdk-amd64")
156
155
YETUS_ARGS+=("--findbugs-home=/usr")
157
156
YETUS_ARGS+=("--whitespace-eol-ignore-list=.*/generated/.*")
@@ -160,9 +159,11 @@ pipeline {
160
159
YETUS_ARGS+=("--quick-hadoopcheck")
161
160
YETUS_ARGS+=("--skip-errorprone")
162
161
# effectively treat dev-support as a custom maven module
163
- YETUS_ARGS+=("--skip-dir =dev-support")
162
+ YETUS_ARGS+=("--skip-dirs =dev-support")
164
163
# help keep the ASF boxes clean
165
164
YETUS_ARGS+=("--sentinel")
165
+ # use emoji vote so it is easier to find the broken line
166
+ YETUS_ARGS+=("--github-use-emoji-vote")
166
167
"${TESTPATCHBIN}" "${YETUS_ARGS[@]}"
167
168
'''
168
169
}
Original file line number Diff line number Diff line change @@ -86,15 +86,19 @@ function personality_parse_args
86
86
for i in " $@ " ; do
87
87
case ${i} in
88
88
--exclude-tests-url=* )
89
+ delete_parameter " ${i} "
89
90
EXCLUDE_TESTS_URL=${i#* =}
90
91
;;
91
92
--include-tests-url=* )
93
+ delete_parameter " ${i} "
92
94
INCLUDE_TESTS_URL=${i#* =}
93
95
;;
94
96
--hadoop-profile=* )
97
+ delete_parameter " ${i} "
95
98
HADOOP_PROFILE=${i#* =}
96
99
;;
97
100
--skip-errorprone)
101
+ delete_parameter " ${i} "
98
102
SKIP_ERRORPRONE=true
99
103
;;
100
104
esac
@@ -461,6 +465,7 @@ function hadoopcheck_parse_args
461
465
for i in " $@ " ; do
462
466
case ${i} in
463
467
--quick-hadoopcheck)
468
+ delete_parameter " ${i} "
464
469
QUICK_HADOOPCHECK=true
465
470
;;
466
471
esac
You can’t perform that action at this time.
0 commit comments