Jenkins 実行の一部として cobertura を含むビルドがあります。ただし、すべてのテストを 2 回実行していることに気付きました。
Jenkins で Maven プロジェクトとしてプロジェクトをセットアップしました。そして、実行する目標を次のように設定しました:clean coberture:cobertura install
install
コマンドの一部は、インストール ゴールの残りの部分 (パッケージなど) を実行するだけだと思っていました。ただし、コンパイルとすべてのテストを再実行します。これは、すでにそこにテストがあるという事実にもかかわらずです。
ビルド前とビルド後の手順のさまざまな組み合わせを構成しようとしましたが、問題が発生し続けます。一部の組み合わせでは、jar などのビルド アーティファクトが Jenkins で公開されません。それ以外の場合、テスト結果が欠落しています。
おそらくビルドを単なるシェルビルドとして作り直す必要があると思いました。その後、次のコマンドを実行できると思います。mvn clean cobertura:cobertura && mvn install -Dmaven.test.skip=true
私はこれが私が望むことをするだろうと思います。少なくとも、すべてのテストの実行を 2 回停止します。
これが最善のアプローチですか、それとも別の方法がありますか?
これは、POM に Cobertura を含める方法です。
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.foo.bar</groupId>
<artifactId>my-parent</artifactId>
<version>1.2.1</version>
</parent>
<groupId>com.foo.bar.baz</groupId>
<artifactId>osom</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<description>TODO</description>
<modules>
<module>module1</module>
<module>module2</module>
<module>module3</module>
</modules>
<dependencies>
</dependencies>
<build>
<!-- To define the plugin version in your parent POM -->
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>3.0.3</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18</version>
<configuration>
<useUnlimitedThreads>true</useUnlimitedThreads>
<parallel>suites</parallel>
<reuseForks>false</reuseForks>
<includes>
<include>**/*Test.java</include>
<include>**/Test*.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
<!-- use mvn cobertura:cobertura to generate cobertura reports -->
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
<configuration>
<aggregate>true</aggregate>
<format>xml</format>
</configuration>
</plugin>
</plugins>
</reporting>
</project>