前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >jenkinsのPipeline项目构建

jenkinsのPipeline项目构建

作者头像
阿超
发布2022-08-16 16:06:50
3940
发布2022-08-16 16:06:50
举报
文章被收录于专栏:快乐阿超

下载插件

创建一个pipeline项目

点击下面的流水线语法

到流水线语法的片段生成器里选择Check out from version control

填入仓库和凭证,生成脚本

复制到pipeline脚本里去

然后选择sh:Shell script,生成脚本,复制

然后再选择deploy:Deploy war/ear to a container

然后填写参数,生成

最后的样子就是这样

完整脚本

代码语言:javascript
复制
pipeline {
    agent any

    stages {
        stage('pull') {
            steps {
                checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[credentialsId: '83039753-8e29-49c9-8e1a-f2c33c4cb847', url: 'git@121.89.163.191:root/rubenweicowbeer.git']]])
            }
        }
        stage('build') {
            steps {
                sh label: '', script: 'mvn clean package'
            }
        }
        stage('publish') {
            steps {
                deploy adapters: [tomcat8(credentialsId: '15efa4d4-9b32-4c8d-a0b6-2aa89b72191f', path: '', url: 'http://121.89.163.191:8080')], contextPath: null, war: 'target/*.war'
            }
        }
    }
}

然后就可以保存,构建了

如果我们想把pipeline脚本用文件的形式保存在项目目录

那么我们就可以创建一个Jenkinsfile并粘入我们的pipeline脚本

push之后发现已经有了

然后选择Pipeline script from SCM

填写配置

然后构建

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2020-07-31,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档