Гитлаб С.И.мвн проверь.Не удалось выполнить цель - PullRequest
0 голосов
/ 25 декабря 2018

Я пытался собрать локально:

mvn -B verify

Все отлично работает.

.gitlab-ci.yml:

image: maven:latest

verify-job:
  script:
    - mvn -B verify

После проверил несколько модулей maven.Я получаю сообщение об ошибке:

[INFO] Tree 1.0-0 ......................................... FAILURE [  7.587 s]

... SKIPPED

[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  01:35 min
[INFO] Finished at: 2018-12-25T13:51:57Z
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.12.4:test (default-test) on project Tree: Execution default-test of goal org.apache.maven.plugins:maven-surefire-plugin:2.12.4:test failed: The forked VM terminated without saying properly goodbye. VM crash or System.exit called ? -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginExecutionException
[ERROR] 
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR]   mvn <goals> -rf :Tree
ERROR: Job failed: exit code 1

ни один модуль не использует зависимости org.apache.maven.plugins: maven-surefire-plugin Я проверил другие ответы на SO с помощьюта же ошибка, никто не связан с интеграцией CI GitLab.Я могу догадаться, что это связано с ktlint, но почему локальные сборки успешны?

1 Ответ

0 голосов
/ 25 декабря 2018

Я нахожу решение: просто добавьте в pom.xml

    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>3.0.0-M1</version>
    </plugin>
...