如何使用Jenkins构建管道基础

时间:2019-03-14 23:24:18

标签: jenkins jenkins-pipeline

我尝试使用管道脚本,直到最后一步。

enter image description here

管道脚本是以下代码

node{
  stage ('Build') {

    git url: 'https://xxx@bitbucket.org/xxx/01-eureka.git'

    withMaven(
        // Maven installation declared in the Jenkins "Global Tool Configuration"
        maven: 'M3',
        // Maven settings.xml file defined with the Jenkins Config File Provider Plugin
        // Maven settings and global settings can also be defined in Jenkins Global Tools Configuration
        mavenSettingsConfig: 'my-maven-settings',
        mavenLocalRepo: '.repository') {

      // Run the maven build
      sh "mvn clean install"

    } // withMaven will discover the generated Maven artifacts, JUnit Surefire & FailSafe & FindBugs reports...
  }
}

我已经配置了Maven和Java。

我不知道最后一步的错误,我更新了所有代码。

1 个答案:

答案 0 :(得分:0)

我不完全像您的ENV,但是首先,您应该检查您的Jenkins工作区文件夹Jenkins \ workspace \ docker-app,以查看git clone是否按预期工作

如果存在源代码,请手动运行maven命令以查看Maven是否正确找到pom.xml