Jenkins kubernetes插件Parallelise声明性Jenkinsfile

时间:2019-04-29 17:27:36

标签: jenkins parallel-processing jenkins-kubernetes kubernetes-jenkins-plugin

使用kubernetes-plugin Parallelise声明性Jenkinsfile,当每个阶段使用相同的容器时,如何并行运行阶段? (例如:sonar_qube分析和单元测试都在Maven容器上运行。

我在Jenkinsfile中尝试了以下方法:

def label = "my-build-${UUID.randomUUID().toString()}"

podTemplate(label: label, containers: [
  containerTemplate(name: 'maven', image: 'maven:3.5.3-jdk-8-alpine', command: 'cat', ttyEnabled: true),
  containerTemplate(name: 'maven2', image: 'maven:3.5.3-jdk-8-alpine', command: 'cat', ttyEnabled: true),
],
volumes: [
  hostPathVolume(mountPath: '/var/run/docker.sock', hostPath: '/var/run/docker.sock'),
  hostPathVolume(mountPath: '/root/.m2/repository', hostPath: '/root/.m2'),
  hostPathVolume(mountPath: '/tmp', hostPath: '/tmp')
]) {

node(label) {
    def myRepo = checkout scm
    def gitCommit = myRepo.GIT_COMMIT
    def gitBranch = myRepo.GIT_BRANCH

    def didFail = false
    def throwable = null

    try {        
        stage('Tests In Parallel') {
            parallel StaticCodeAnalysis: {
                container('maven'){
                    withSonarQubeEnv('sonarqube-cluster') {
                      // requires SonarQube Scanner for Maven 3.2+
                      sh " mvn help:evaluate -Dexpression=settings.localRepository"

                      sh "mvn clean"
                      sh "mvn compiler:help jar:help resources:help surefire:help clean:help install:help deploy:help site:help dependency:help javadoc:help spring-boot:help org.jacoco:jacoco-maven-plugin:prepare-agent"
                      sh "mvn org.jacoco:jacoco-maven-plugin:prepare-agent package sonar:sonar -Dsonar.host.url=$SONAR_HOST_URL -Dsonar.login=$SONAR_AUTH_TOKEN -Dsonar.exclusions=srcgen/**/* -Dmaven.test.skip=true"
                    }
                }
            }, unitTests: {
                container('maven2') {
                  sh "mvn clean package"

                  junit allowEmptyResults: true, testResults: '**/surefire-reports/*.xml'
                }
            },
            failFast: true
        }       
    } catch (e) {
        didFail = true
        throwable = e
    } finally {
        sh "rm -rf /tmp/${label}"
    }
    if (didFail) {
        echo "Something went wrong."
        error throwable
    }        

  }
}

一切似乎都可以正常工作,在蔚蓝的海洋UI上,我可以看到两个阶段同时正常运行。但是,当parralell阶段中的一个阶段完成时,另一个阶段对于肯定已经使用过的类以及运行该阶段的位置的类均以“ java.lang.NoClassDefFoundError's”失败。

几乎所有被仿造的奴隶都使用相同的工作区目录,即:/ home / jenkins / workspace / job_name /

maven命令创建文件夹 -/ home / jenkins / workspace / job_name / target / classes -但是,当您看到失败的消息时,它会询问使用的容器是否从classes文件夹中提取了所有内容。

0 个答案:

没有答案