
持续集成交付CICD:使用Jenkins插件上传Nexus制品
(1)Jenkins安装插件Nexus Artifact Uploader。(5)Jenkins流水线直接修改回放,点击运行。(7)查看日志,显示已成功上传制品。(3)使用片段生成器生成DSL。(6)Blue Ocean查看。(4)生成流水线脚本。(8)Nexus查看。
·
目录
一、实验
1.使用Jenkins插件上传Nexus制品
(1)环境
表1 主机
主机 | 架构 | 版本 | IP | 备注 |
jenkins | jenkins主节点 | 2.414.2 | 192.168.204.15:8080 | gitlab runner (从节点) |
maven | 3.8.6 | |||
gitlab | gitlab 主节点 | 12.10.14 | 192.168.204.8:82 | jenkins slave (从节点) |
tomcat | nexus | 3.63 | 192.168.204.13:8081 |
(2)Jenkins安装插件Nexus Artifact Uploader
(3)添加凭据
(4)使用片段生成器生成DSL
(5)生成流水线脚本
nexusArtifactUploader artifacts: [[artifactId: 'devopstest', classifier: '', file: 'target/maven-test-1.0-SNAPSHOT.jar', type: 'jar']],
credentialsId: '318df1ad-083b-4158-ac88-2f584446563e',
groupId: 'com.jenkins',
nexusUrl: '192.168.204.13:8081',
nexusVersion: 'nexus3',
protocol: 'http',
repository: 'mymavenrepo',
version: '1.1.2'
(6)Jenkins流水线直接修改回放,点击运行
@Library("mylib@master") _
import org.devops.*
def checkout = new Checkout()
def build = new Build()
def unittest = new UnitTest()
def sonar = new Sonar()
pipeline {
agent { label "build"}
options {
skipDefaultCheckout true
}
stages{
stage("Checkout"){
steps{
script {
println("GetCode")
checkout.GetCode("${env.srcUrl}","${env.branchName}")
}
}
}
stage("build"){
steps{
script{
println("Build")
build.CodeBuild("${env.buildTool}")
}
}
}
stage("UnitTest"){
steps{
script{
println("Test")
unittest.CodeTest("${env.buildTool}")
}
}
}
stage("SonarScan"){
steps {
script {
groupName = "${JOB_NAME}".split("/")[0]
projectName ="${JOB_NAME}".split("/")[-1]
sonar.CodeSonar("${env.buildTool}",projectName,groupName)
nexusArtifactUploader artifacts: [[artifactId: 'devopstest', classifier: '', file: 'target/maven-test-1.0-SNAPSHOT.jar', type: 'jar']],
credentialsId: '318df1ad-083b-4158-ac88-2f584446563e',
groupId: 'com.jenkins',
nexusUrl: '192.168.204.13:8081',
nexusVersion: 'nexus3',
protocol: 'http',
repository: 'mymavenrepo',
version: '1.1.2'
}
}
}
}
}
(7)Blue Ocean查看
(8)查看日志,显示已成功上传制品
(9)Nexus查看
更多推荐
所有评论(0)