HADOOP-17787. Refactor fetching of credentials in Jenkins (#3167)
This commit is contained in:
parent
b0b867e977
commit
4fd97e01e5
41
dev-support/Jenkinsfile
vendored
41
dev-support/Jenkinsfile
vendored
@ -15,6 +15,15 @@
|
|||||||
// specific language governing permissions and limitations
|
// specific language governing permissions and limitations
|
||||||
// under the License.
|
// under the License.
|
||||||
|
|
||||||
|
def getGithubAndJiraCreds() {
|
||||||
|
return [usernamePassword(credentialsId: 'apache-hadoop-at-github.com',
|
||||||
|
passwordVariable: 'GITHUB_TOKEN',
|
||||||
|
usernameVariable: 'GITHUB_USER'),
|
||||||
|
usernamePassword(credentialsId: 'hadoopqa-at-asf-jira',
|
||||||
|
passwordVariable: 'JIRA_PASSWORD',
|
||||||
|
usernameVariable: 'JIRA_USER')]
|
||||||
|
}
|
||||||
|
|
||||||
pipeline {
|
pipeline {
|
||||||
|
|
||||||
agent {
|
agent {
|
||||||
@ -103,13 +112,7 @@ pipeline {
|
|||||||
}
|
}
|
||||||
|
|
||||||
steps {
|
steps {
|
||||||
withCredentials(
|
withCredentials(getGithubAndJiraCreds()) {
|
||||||
[usernamePassword(credentialsId: 'apache-hadoop-at-github.com',
|
|
||||||
passwordVariable: 'GITHUB_TOKEN',
|
|
||||||
usernameVariable: 'GITHUB_USER'),
|
|
||||||
usernamePassword(credentialsId: 'hadoopqa-at-asf-jira',
|
|
||||||
passwordVariable: 'JIRA_PASSWORD',
|
|
||||||
usernameVariable: 'JIRA_USER')]) {
|
|
||||||
sh '''#!/usr/bin/env bash
|
sh '''#!/usr/bin/env bash
|
||||||
|
|
||||||
chmod u+x "${SOURCEDIR}/dev-support/jenkins.sh"
|
chmod u+x "${SOURCEDIR}/dev-support/jenkins.sh"
|
||||||
@ -155,13 +158,7 @@ pipeline {
|
|||||||
}
|
}
|
||||||
|
|
||||||
steps {
|
steps {
|
||||||
withCredentials(
|
withCredentials(getGithubAndJiraCreds()) {
|
||||||
[usernamePassword(credentialsId: 'apache-hadoop-at-github.com',
|
|
||||||
passwordVariable: 'GITHUB_TOKEN',
|
|
||||||
usernameVariable: 'GITHUB_USER'),
|
|
||||||
usernamePassword(credentialsId: 'hadoopqa-at-asf-jira',
|
|
||||||
passwordVariable: 'JIRA_PASSWORD',
|
|
||||||
usernameVariable: 'JIRA_USER')]) {
|
|
||||||
sh '''#!/usr/bin/env bash
|
sh '''#!/usr/bin/env bash
|
||||||
|
|
||||||
chmod u+x "${SOURCEDIR}/dev-support/jenkins.sh"
|
chmod u+x "${SOURCEDIR}/dev-support/jenkins.sh"
|
||||||
@ -207,13 +204,7 @@ pipeline {
|
|||||||
}
|
}
|
||||||
|
|
||||||
steps {
|
steps {
|
||||||
withCredentials(
|
withCredentials(getGithubAndJiraCreds()) {
|
||||||
[usernamePassword(credentialsId: 'apache-hadoop-at-github.com',
|
|
||||||
passwordVariable: 'GITHUB_TOKEN',
|
|
||||||
usernameVariable: 'GITHUB_USER'),
|
|
||||||
usernamePassword(credentialsId: 'hadoopqa-at-asf-jira',
|
|
||||||
passwordVariable: 'JIRA_PASSWORD',
|
|
||||||
usernameVariable: 'JIRA_USER')]) {
|
|
||||||
sh '''#!/usr/bin/env bash
|
sh '''#!/usr/bin/env bash
|
||||||
|
|
||||||
chmod u+x "${SOURCEDIR}/dev-support/jenkins.sh"
|
chmod u+x "${SOURCEDIR}/dev-support/jenkins.sh"
|
||||||
@ -256,13 +247,7 @@ pipeline {
|
|||||||
}
|
}
|
||||||
|
|
||||||
steps {
|
steps {
|
||||||
withCredentials(
|
withCredentials(getGithubAndJiraCreds()) {
|
||||||
[usernamePassword(credentialsId: 'apache-hadoop-at-github.com',
|
|
||||||
passwordVariable: 'GITHUB_TOKEN',
|
|
||||||
usernameVariable: 'GITHUB_USER'),
|
|
||||||
usernamePassword(credentialsId: 'hadoopqa-at-asf-jira',
|
|
||||||
passwordVariable: 'JIRA_PASSWORD',
|
|
||||||
usernameVariable: 'JIRA_USER')]) {
|
|
||||||
sh '''#!/usr/bin/env bash
|
sh '''#!/usr/bin/env bash
|
||||||
|
|
||||||
chmod u+x "${SOURCEDIR}/dev-support/jenkins.sh"
|
chmod u+x "${SOURCEDIR}/dev-support/jenkins.sh"
|
||||||
|
Loading…
Reference in New Issue
Block a user