Skip to content

Commit 157ffae

Browse files
committed
HBASE-22724 Add a emoji on the vote table for pre commit result on github (#568)
Signed-off-by: Sean Busbey <[email protected]> Signed-off-by: Stack <[email protected]>
1 parent 73e0304 commit 157ffae

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

dev-support/Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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'

dev-support/Jenkinsfile_GitHub

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff 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,17 +151,18 @@ 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/.*")
158157
YETUS_ARGS+=("--whitespace-tabs-ignore-list=.*/generated/.*")
159158
YETUS_ARGS+=("--personality=${SOURCEDIR}/dev-support/hbase-personality.sh")
160159
YETUS_ARGS+=("--quick-hadoopcheck")
161160
# effectively treat dev-support as a custom maven module
162-
YETUS_ARGS+=("--skip-dir=dev-support")
161+
YETUS_ARGS+=("--skip-dirs=dev-support")
163162
# help keep the ASF boxes clean
164163
YETUS_ARGS+=("--sentinel")
164+
# use emoji vote so it is easier to find the broken line
165+
YETUS_ARGS+=("--github-use-emoji-vote")
165166
"${TESTPATCHBIN}" "${YETUS_ARGS[@]}"
166167
'''
167168
}

dev-support/hbase-personality.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,15 @@ 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
esac
@@ -446,6 +449,7 @@ function hadoopcheck_parse_args
446449
for i in "$@"; do
447450
case ${i} in
448451
--quick-hadoopcheck)
452+
delete_parameter "${i}"
449453
QUICK_HADOOPCHECK=true
450454
;;
451455
esac

0 commit comments

Comments
 (0)