- official book
- official github
- pipeline description
- pipeline
- user handbook
- BlueOcean
- pipeline examples
- continuous delivery patterns
- continuous delivery architecture
- REST API
- wget -q -O - https://pkg.jenkins.io/debian/jenkins-ci.org.key | sudo apt-key add -
- echo deb https://pkg.jenkins.io/debian-stable binary/ | sudo tee /etc/apt/sources.list.d/jenkins.list
- sudo apt-get update
- sudo apt-get install jenkins
- sudo systemctl start jenkins
- sudo systemctl status jenkins
rm -rf .jenkins/caches/* rm -rf .jenkins/workspace/*
java -jar jenkins.war --httpPort=8080 --useJmx
~/.jenkins/secrets/
(/var/lib/jenkins) (/opt/webconf/var/lib/jenkins) config.xml 1.599
- {jenkins-url}/safeRestart
- {jenkins-url}/restart
- java -jar /var/cache/jenkins/war/WEB-INF/jenkins-cli.jar -s {jenkins-url} safe-restart
{jenkins-url}/exit
Thread.getAllStackTraces().keySet().each() {
t -> if (t.getName()=="YOUR THREAD NAME" ) { t.interrupt(); }
}
Jenkins.instance.getItemByFullName("Brand Server/develop").getBuildByNumber(614).finish(hudson.model.Result.ABORTED, new java.io.IOException("Aborting build"));
Jenkins.instance.getItemByFullName("Brand Server/develop").getBuildByNumber(614).doKill();
copy jpi/hpi file into {JENKINS_HOME/plugins}
copy jpi/hpi file into {JENKINS_HOME/plugins}
https://{jenkins-url}/pluginManager/api/xml?depth=1
checkout([$class: 'GitSCM', branches: [[name: "*/$branch"]], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'GitLFSPull', timeout: 30], [$class: 'CloneOption', depth: 0, timeout: 30], [$class: 'CheckoutOption', timeout: 30]], submoduleCfg: [], userRemoteConfigs: [[credentialsId: 'a0e5424f-2ffb-', url: '$CC_GIT_CREDENTIAL']]])
}
if (isGitBranch('OPM-integration-test')) {
stage('candidate-git-label') {
lastCommit = sh(returnStdout: true, script: "git log -n 1 --pretty=format:'%h'").trim()
print(lastCommit)
def newVersion = readVersion()
print("this is new version: $newVersion")
}
stage('candidate-deploy') {
mvn('org.apache.tomcat.maven:tomcat7-maven-plugin:2.2:redeploy -Dmaven.tomcat.url=http://host:9090/manager/text -Dtomcat.username=root -Dtomcat.password=root -DskipTests ')
}
}
--------------
def readVersion() {
try {
timeout(time: 20, unit: 'MINUTES') {
def keep = input message: 'New version of application:',
parameters: [stringParam(defaultValue: "2018.06.00.00-SNAPSHOT", description: 'new application version', name: 'currentBuildVersion')]
return keep
}
} catch(e) {
return "2018.06.00.00-SNAPSHOT"
}
}
needToExecuteStage('build', {
mvn('-U clean package -Dmaven.javadoc.skip=true')
})
needToExecuteStage('deploy nexus', {
mvn('-U deploy -Dmaven.javadoc.skip=true -Dbuild.number=${GIT_BRANCH}-#${BUILD_NUMBER}')
})
needToExecuteStage('sonar', {
mvn('sonar:sonar -Psonar-test')
})
needToExecuteStage('integration tests', {
mvn('install -DskipTests -DskipITs=false -Pintegration-tests,dev -Dheadless=1')
})
needToExecuteStage('git label', {
def newVersion = readVersion()
print(">-> deploy application with new version: $newVersion")
sh( script: "git checkout $BRANCH_NAME ")
def remoteUrl = sh(returnStdout: true, script: "git config --get remote.origin.url ")
sh( script: "git remote set-url origin $remoteUrl ")
sh(script: "echo $newVersion > opm-gui/src/main/webapp/META-INF/commit ")
sh(script: "git rev-parse HEAD >> opm-gui/src/main/webapp/META-INF/commit ")
sh( script: "git tag -a $newVersion -m 'deployment_jenkins_job' ")
sshagent (credentials: ['git_jenkins']) {
sh("git push --tags $remoteUrl")
}
mvn ("versions:set -DnewVersion=$newVersion")
mvn ("-N versions:update-child-modules")
mvn ("clean install -DskipTests=true")
})
needToExecuteStage('deploy tomcat', {
mvn('org.apache.tomcat.maven:tomcat7-maven-plugin:2.2:redeploy -Dmaven.tomcat.url=http://v337:9090/manager/text -Dtomcat.username=root -Dtomcat.password=root -DskipTests ')
})
// -------------------------------------------
def executeStage(needToExecute, stageName, func){
if(needToExecute){
stage(stageName){
func()
}
}
}
def needToExecuteStage(stageName, func){
def decisionTable = [
'release' : ["build": true, "deploy nexus": true, "sonar": false, "integration tests": true, "git label": true, "deploy tomcat": false]
,'develop' : ["build": true, "deploy nexus": true, "sonar": true, "integration tests": true, "git label": false, "deploy tomcat": true ]
,'feature' : ["build": true, "deploy nexus": false, "sonar": false, "integration tests": true, "git label": false, "deploy tomcat": false]
,'master' : ["build": true, "deploy nexus": true, "sonar": false, "integration tests": true, "git label": false, "deploy tomcat": false]
,'integration-test': ["build": true, "deploy nexus": true, "sonar": false, "integration tests": true, "git label": false, "deploy tomcat": false]
]
def branchName = env.BRANCH_NAME
if(decisionTable[branchName]!=null){
executeStage(decisionTable[branchName][stageName], stageName, func)
return
}
for ( def key in decisionTable.keySet()){
if(branchName.startsWith(key)){
executeStage(decisionTable[key][stageName], stageName, func)
return
}
}
}
String input = "this ain't easy"
String escaped = "'" + input.replaceAll(/'/, /'"'"'/) + "'"
println escaped
// 'this ain'"'"'t easy'
sh "mycommand --input ${escaped}"
deploy with parameters
curl https://jenkins-stg.dpl.org/job/application/deployment/job/deploy-from-branch/buildWithParameters \
--user $DXC_USER:$DXC_PASS \
--data BRANCH_NAME=mdf4-download --data DESTINATION=data-portal-stg-1
job information
curl -sg "https://jenkins-stg.dpl.org/api/json?tree=jobs[name,url]" --user $DXC_USER:$DXC_PASS
curl -sg "https://jenkins-stg.dpl.org/job/application/job/data-portal/job/deployment/job/deploy-from-branch-3/api/json?tree=allBuilds[number,url]" --user $DXC_USER:$DXC_PASS
curl -sg "https://jenkins-stg.dpl.org/job/application/job/data-portal/job/deployment/job/deploy-from-branch-3/244/api/json?tree" --user $DXC_USER:$DXC_PASS
obtaining
wget https://sonarsource.bintray.com/Distribution/sonarqube/
start/stop/status
/dev/sonar/bin/linux-x86-64/sonar.sh start
/dev/sonar/bin/linux-x86-64/sonar.sh status
/dev/sonar/bin/linux-x86-64/sonar.sh stop
sonar
url: http://host01:9000
login: admin
passw: admin
echo sh(returnStdout: true, script: 'env')
ERROR: script not yet approved for use
http://localhost:9090/scriptApproval/
withMaven(jdk: 'jdk8', maven: 'mvn-325', mavenSettingsConfig: 'paps-maven-settings') {
jdk with name "jdk8" should be configured: http://localhost:9090/configureTools/
maven with name "mvn-325" should be configured: http://localhost:9090/configureTools/
Could not find the Maven settings.xml config file id:paps-maven-settings. Make sure it exists on Managed Files
plugin should be present
http://localhost:9090/configfiles/
RSA key fingerprint is SHA256:xxxxxx Are you sure you want to continue connecting (yes/no) ? ssh://[email protected]:7999/pportal/commons.git
change
gitHostUrl = "https://[email protected]/scm"