-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed the credential id in Jenkinsfile
- Loading branch information
1 parent
6c38321
commit 47cefb0
Showing
1 changed file
with
25 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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){ | ||
|
@@ -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"' | ||
|