Skip to content

Commit

Permalink
Changed the credential id in Jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
alecszaharia committed Feb 26, 2019
1 parent 6c38321 commit 47cefb0
Showing 1 changed file with 25 additions and 19 deletions.
44 changes: 25 additions & 19 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,34 +1,40 @@
def now = new Date()
def currentDate = now.format("yyyy-MM-dd", TimeZone.getTimeZone('UTC'))
def changeLogs = params.changelog.replaceAll("\n","\\\\n").replaceAll("/",'\\\\/')
def zipFileName = "Build-"+params.buildVersion+".zip"
def zipFileName = "Build-"+params.buildVersion+"-RC.zip"
env.BUILD_ZIP_PATH = params.brizySvnPath+"/"+zipFileName

if(params.gitMerge) {
zipFileName = "Build-"+params.buildVersion+".zip"
}


def notifySlack(String buildResult = 'STARTED', String zipPath = '') {


def buildInfo = "\nBranch: "+params.releaseBranch+"\nPlugin version: "+params.buildVersion+"\nEditor version: "+params.editorVersion+"\nChangelog\n"+params.changelog;

if ( buildResult == "SUCCESS" ) {
slackSend color: "good", message: "Job: ${env.JOB_NAME} with buildnumber ${env.BUILD_NUMBER} was successful."+buildInfo
withCredentials([string(credentialsId: 'Slack-Oauth-Token', variable: 'SECRET')]) {
if ( buildResult == "SUCCESS" ) {
slackSend tokenCredentialId: "$SECRET", color: "good", message: "Job: ${env.JOB_NAME} with buildnumber ${env.BUILD_NUMBER} was successful."+buildInfo

withCredentials([string(credentialsId: 'Slack Oauth Token', variable: 'SECRET')]) {
sh '''
set +x
curl -F file=@$BUILD_ZIP_PATH -F channels=#jenkins -F token="$SECRET" https://slack.com/api/files.upload
set +x
curl -F file=@$BUILD_ZIP_PATH -F channels=#jenkins -F token="$SECRET" https://slack.com/api/files.upload
'''
}

}
else if( buildResult == "FAILURE" ) {
slackSend color: "danger", message: "Job: ${env.JOB_NAME} with buildnumber ${env.BUILD_NUMBER} was failed."+buildInfo
}
else if( buildResult == "UNSTABLE" ) {
slackSend color: "warning", message: "Job: ${env.JOB_NAME} with buildnumber ${env.BUILD_NUMBER} was unstable."+buildInfo
}
else {
slackSend color: "danger", message: "Job: ${env.JOB_NAME} with buildnumber ${env.BUILD_NUMBER} its result was unclear."+buildInfo
}


}
else if( buildResult == "FAILURE" ) {
slackSend tokenCredentialId: "$SECRET", color: "danger", message: "Job: ${env.JOB_NAME} with buildnumber ${env.BUILD_NUMBER} was failed."+buildInfo
}
else if( buildResult == "UNSTABLE" ) {
slackSend tokenCredentialId: "$SECRET", color: "warning", message: "Job: ${env.JOB_NAME} with buildnumber ${env.BUILD_NUMBER} was unstable."+buildInfo
}
else {
slackSend tokenCredentialId: "$SECRET", color: "danger", message: "Job: ${env.JOB_NAME} with buildnumber ${env.BUILD_NUMBER} its result was unclear."+buildInfo
}
}
}

def folderExist(path){
Expand All @@ -47,7 +53,7 @@ pipeline {
}

git url: "[email protected]:/ThemeFuse/Brizy",
credentialsId: '7ca32202-12d1-4189-9ff3-093095f8ffc3',
credentialsId: 'Git',
branch: params.releaseBranch

sh 'git config user.name "Alex Zaharia"'
Expand Down

0 comments on commit 47cefb0

Please sign in to comment.