This is an automated email from the ASF dual-hosted git repository.
jeagles pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tez.git
The following commit(s) were added to refs/heads/master by this push:
new 2fefe4a TEZ-4291: Fancy precommit report on PR (#112)
2fefe4a is described below
commit 2fefe4a6b16bea8f02169ec2e2a6e89575440328
Author: Bodor Laszlo <[email protected]>
AuthorDate: Thu Feb 18 17:35:19 2021 +0100
TEZ-4291: Fancy precommit report on PR (#112)
---
Jenkinsfile | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 1d62646..835a052 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -52,7 +52,7 @@ pipeline {
checkout([
$class: 'GitSCM',
branches: [[name: "${env.YETUS_VERSION}"]],
- userRemoteConfigs: [[ url:
'https://github.com/jteagles/yetus']]]
+ userRemoteConfigs: [[ url:
'https://github.com/apache/yetus']]]
)
}
}
@@ -61,8 +61,8 @@ pipeline {
stage ('precommit-run') {
steps {
withCredentials(
- [usernamePassword(credentialsId:
'apache-tez-at-github.com',
- passwordVariable: 'GITHUB_PASSWD',
+ [usernamePassword(credentialsId:
'apache-hadoop-at-github.com',
+ passwordVariable: 'GITHUB_TOKEN',
usernameVariable: 'GITHUB_USER'),
usernamePassword(credentialsId:
'tez-ci',
passwordVariable: 'JIRA_PASSWORD',
@@ -106,7 +106,7 @@ pipeline {
# enable writing back to Github
YETUS_ARGS+=(--github-user="${GITHUB_USER}")
- YETUS_ARGS+=(--github-password="${GITHUB_PASSWD}")
+ YETUS_ARGS+=(--github-token="${GITHUB_TOKEN}")
# enable writing back to ASF JIRA
YETUS_ARGS+=(--jira-password="${JIRA_PASSWORD}")
@@ -153,6 +153,9 @@ pipeline {
# help keep the ASF boxes clean
YETUS_ARGS+=("--sentinel")
+ # use emoji vote so it is easier to find the broken
line
+ YETUS_ARGS+=("--github-use-emoji-vote")
+
# test with Java 8 and 11
YETUS_ARGS+=("--java-home=/usr/lib/jvm/java-8-openjdk-amd64")
YETUS_ARGS+=("--multijdkdirs=/usr/lib/jvm/java-11-openjdk-amd64")