busbey commented on a change in pull request #1183: HBASE-23767 Add JDK11
compilation and unit test support to Github precommit
URL: https://github.com/apache/hbase/pull/1183#discussion_r385849563
##########
File path: dev-support/Jenkinsfile_GitHub
##########
@@ -47,122 +49,157 @@ pipeline {
}
stages {
- stage ('install yetus') {
+ stage ('scm checkouts') {
steps {
+ echo "scm checkout WORKSPACE: ${WORKSPACE}"
+ dir("${WORKSPACE}/${SOURCEDIR}") {
+ checkout scm
+ }
dir("${WORKSPACE}/${YETUS}") {
checkout([
- $class: 'GitSCM',
- branches: [[name: "${env.YETUS_VERSION}"]],
- userRemoteConfigs: [[ url:
'https://github.com/apache/yetus.git']]]
+ $class: 'GitSCM',
+ branches: [[name: "${env.YETUS_VERSION}"]],
Review comment:
ugh. how have I never noticed this in the github handling.
I'll file a follow-on to stop doing this. we should be consuming the
artifacts of other projects not hooking into their git repos.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services