Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

KOGITO-9145 Create an implementation of the Service Discovery catalog based on MicroProfile Config #3179

Merged
merged 9 commits into from
Aug 22, 2023

Conversation

hbelmiro
Copy link
Contributor

@hbelmiro hbelmiro commented Aug 17, 2023

Jira: https://issues.redhat.com/browse/KOGITO-9145

@VaniHaripriya's PR is lacking of integration tests and she won't be able to finish it on time. So, I'm opening this one with my commits on top of hers.

PR to update the docs:


  • You have read the contributors guide
  • Your code is properly formatted according to this configuration
  • Pull Request title is properly formatted: KOGITO-XYZ Subject
  • Pull Request title contains the target branch if not targeting main: [0.9.x] KOGITO-XYZ Subject
  • Pull Request contains link to the JIRA issue
  • Pull Request contains link to any dependent or related Pull Request
  • Pull Request contains description of the issue
  • Pull Request does not include fixes for issues other than the main ticket
How to replicate CI configuration locally?

Build Chain tool does "simple" maven build(s), the builds are just Maven commands, but because the repositories relates and depends on each other and any change in API or class method could affect several of those repositories there is a need to use build-chain tool to handle cross repository builds and be sure that we always use latest version of the code for each repository.

build-chain tool is a build tool which can be used on command line locally or in Github Actions workflow(s), in case you need to change multiple repositories and send multiple dependent pull requests related with a change you can easily reproduce the same build by executing it on Github hosted environment or locally in your development environment. See local execution details to get more information about it.

How to retest this PR or trigger a specific build:
  • for pull request checks
    Please add comment: Jenkins retest this

  • for a specific pull request check
    Please add comment: Jenkins (re)run [kogito-runtimes|kogito-apps|kogito-examples] tests

  • for quarkus branch checks
    Run checks against Quarkus current used branch
    Please add comment: Jenkins run quarkus-branch

  • for a quarkus branch specific check
    Run checks against Quarkus current used branch
    Please add comment: Jenkins (re)run [kogito-runtimes|kogito-apps|kogito-examples] quarkus-branch

  • for quarkus main checks
    Run checks against Quarkus main branch
    Please add comment: Jenkins run quarkus-main

  • for a specific quarkus main check
    Run checks against Quarkus main branch
    Please add comment: Jenkins (re)run [kogito-runtimes|kogito-apps|kogito-examples] quarkus-main

  • for quarkus lts checks
    Run checks against Quarkus lts branch
    Please add comment: Jenkins run quarkus-lts

  • for a specific quarkus lts check
    Run checks against Quarkus lts branch
    Please add comment: Jenkins (re)run [kogito-runtimes|kogito-apps|kogito-examples] quarkus-lts

  • for native checks
    Run native checks
    Please add comment: Jenkins run native

  • for a specific native check
    Run native checks
    Please add comment: Jenkins (re)run [kogito-runtimes|kogito-apps|kogito-examples] native

  • for native lts checks
    Run native checks against quarkus lts branch
    Please add comment: Jenkins run native-lts

  • for a specific native lts check
    Run native checks against quarkus lts branch
    Please add comment: Jenkins (re)run [kogito-runtimes|kogito-apps|kogito-examples] native-lts

  • Full Kogito testing (with cloud images and operator BDD testing)
    Please add comment: Jenkins run BDD
    This check should be used only if a big change is done as it takes time to run, need resources and one full BDD tests check can be done at a time ...

How to backport a pull request to a different branch?

In order to automatically create a backporting pull request please add one or more labels having the following format backport-<branch-name>, where <branch-name> is the name of the branch where the pull request must be backported to (e.g., backport-7.67.x to backport the original PR to the 7.67.x branch).

NOTE: backporting is an action aiming to move a change (usually a commit) from a branch (usually the main one) to another one, which is generally referring to a still maintained release branch. Keeping it simple: it is about to move a specific change or a set of them from one branch to another.

Once the original pull request is successfully merged, the automated action will create one backporting pull request per each label (with the previous format) that has been added.

If something goes wrong, the author will be notified and at this point a manual backporting is needed.

NOTE: this automated backporting is triggered whenever a pull request on main branch is labeled or closed, but both conditions must be satisfied to get the new PR created.

Quarkus-3 PR check is failing ... what to do ? The Quarkus 3 check is applying patches from the `.ci/environments/quarkus-3/patches`.

The first patch, called 0001_before_sh.patch, is generated from Openrewrite .ci/environments/quarkus-3/quarkus3.yml recipe. The patch is created to speed up the check. But it may be that some changes in the PR broke this patch.
No panic, there is an easy way to regenerate it. You just need to comment on the PR:

jenkins rewrite quarkus-3

and it should, after some minutes (~20/30min) apply a commit on the PR with the patch regenerated.

Other patches were generated manually. If any of it fails, you will need to manually update it... and push your changes.

@hbelmiro
Copy link
Contributor Author

jenkins retest this

@kie-ci3
Copy link
Contributor

kie-ci3 commented Aug 17, 2023

(tests) - kogito-runtimes job #3029 was: UNSTABLE
Possible explanation: This should be test failures

Reproducer

export BUILD_MVN_OPTS_CURRENT=-T 1C -Dvalidate-formatting -Prun-code-coverage
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/kogito-pipelines/main/.ci/pull-request-config.yaml' -o 'bc' -p kiegroup/kogito-runtimes -u https://github.com/kiegroup/kogito-runtimes/pull/3179 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/kogito/job/main/job/pullrequest/job/kogito-runtimes.tests.kogito-runtimes/3029/display/redirect

Test results:

  • PASSED: 3356
  • FAILED: 1

Those are the test failures:

org.kie.kogito.addons.quarkus.microprofile.config.service.catalog.it.MicroProfileConfigServiceAddonIT.executeWithEmptyParameters java.lang.RuntimeException: io.quarkus.builder.BuildException: Build failure: Build failed due to errors
[error]: Build step io.quarkus.kubernetes.client.deployment.DevServicesKubernetesProcessor#setupKubernetesDevService threw an exception: java.lang.RuntimeException: org.testcontainers.containers.ContainerLaunchException: Container startup failed
at io.quarkus.kubernetes.client.deployment.DevServicesKubernetesProcessor.setupKubernetesDevService(DevServicesKubernetesProcessor.java:119)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:566)
at io.quarkus.deployment.ExtensionLoader$3.execute(ExtensionLoader.java:909)
at io.quarkus.builder.BuildContext.run(BuildContext.java:281)
at org.jboss.threads.ContextHandler$1.runWith(ContextHandler.java:18)
at org.jboss.threads.EnhancedQueueExecutor$Task.run(EnhancedQueueExecutor.java:2449)
at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1478)
at java.base/java.lang.Thread.run(Thread.java:829)
at org.jboss.threads.JBossThread.run(JBossThread.java:501)
Caused by: org.testcontainers.containers.ContainerLaunchException: Container startup failed
at org.testcontainers.containers.GenericContainer.doStart(GenericContainer.java:349)
at org.testcontainers.containers.GenericContainer.start(GenericContainer.java:322)
at io.quarkus.kubernetes.client.deployment.DevServicesKubernetesProcessor.lambda$startKubernetes$7(DevServicesKubernetesProcessor.java:227)
at java.base/java.util.Optional.orElseGet(Optional.java:369)
at io.quarkus.kubernetes.client.deployment.DevServicesKubernetesProcessor.startKubernetes(DevServicesKubernetesProcessor.java:241)
at io.quarkus.kubernetes.client.deployment.DevServicesKubernetesProcessor.setupKubernetesDevService(DevServicesKubernetesProcessor.java:109)
... 11 more
Caused by: org.rnorth.ducttape.RetryCountExceededException: Retry limit hit with exception
at org.rnorth.ducttape.unreliables.Unreliables.retryUntilSuccess(Unreliables.java:88)
at org.testcontainers.containers.GenericContainer.doStart(GenericContainer.java:334)
... 16 more
Caused by: org.testcontainers.containers.ContainerLaunchException: Could not create/start container
at org.testcontainers.containers.GenericContainer.tryStart(GenericContainer.java:542)
at org.testcontainers.containers.GenericContainer.lambda$doStart$0(GenericContainer.java:344)
at org.rnorth.ducttape.unreliables.Unreliables.retryUntilSuccess(Unreliables.java:81)
... 17 more
Caused by: org.testcontainers.containers.ContainerLaunchException: Container startup failed
at org.testcontainers.containers.GenericContainer.doStart(GenericContainer.java:349)
at org.testcontainers.containers.GenericContainer.start(GenericContainer.java:322)
at com.dajudge.kindcontainer.ApiServerContainer.containerIsStarting(ApiServerContainer.java:142)
at org.testcontainers.containers.GenericContainer.containerIsStarting(GenericContainer.java:692)
at com.dajudge.kindcontainer.KubernetesContainer.containerIsStarting(KubernetesContainer.java:151)
at org.testcontainers.containers.GenericContainer.tryStart(GenericContainer.java:474)
... 19 more
Caused by: org.rnorth.ducttape.RetryCountExceededException: Retry limit hit with exception
at org.rnorth.ducttape.unreliables.Unreliables.retryUntilSuccess(Unreliables.java:88)
at org.testcontainers.containers.GenericContainer.doStart(GenericContainer.java:334)
... 24 more
Caused by: org.testcontainers.containers.ContainerLaunchException: Could not create/start container
at org.testcontainers.containers.GenericContainer.tryStart(GenericContainer.java:542)
at org.testcontainers.containers.GenericContainer.lambda$doStart$0(GenericContainer.java:344)
at org.rnorth.ducttape.unreliables.Unreliables.retryUntilSuccess(Unreliables.java:81)
... 25 more
Caused by: com.github.dockerjava.api.exception.ConflictException: Status 409: {"message":"cannot join network of a non running container: 3a08247341cc6dd467de5426b224f627decfe06f12291db85c14424c14e7459f"}

at org.testcontainers.shaded.com.github.dockerjava.core.DefaultInvocationBuilder.execute(DefaultInvocationBuilder.java:245)
at org.testcontainers.shaded.com.github.dockerjava.core.DefaultInvocationBuilder.post(DefaultInvocationBuilder.java:102)
at org.testcontainers.shaded.com.github.dockerjava.core.exec.StartContainerCmdExec.execute(StartContainerCmdExec.java:31)
at org.testcontainers.shaded.com.github.dockerjava.core.exec.StartContainerCmdExec.execute(StartContainerCmdExec.java:13)
at org.testcontainers.shaded.com.github.dockerjava.core.exec.AbstrSyncDockerCmdExec.exec(AbstrSyncDockerCmdExec.java:21)
at org.testcontainers.shaded.com.github.dockerjava.core.command.AbstrDockerCmd.exec(AbstrDockerCmd.java:35)
at org.testcontainers.shaded.com.github.dockerjava.core.command.StartContainerCmdImpl.exec(StartContainerCmdImpl.java:43)
at org.testcontainers.containers.GenericContainer.tryStart(GenericContainer.java:441)
... 27 more

@hbelmiro
Copy link
Contributor Author

jenkins rerun kogito-runtimes tests

@hbelmiro hbelmiro changed the title Kogito 9145 to kiegroup KOGITO-9145 Create an implementation of the Service Discovery catalog based on MicroProfile Config Aug 17, 2023
@hbelmiro hbelmiro marked this pull request as ready for review August 17, 2023 15:22
@kie-ci3
Copy link
Contributor

kie-ci3 commented Aug 17, 2023

(tests) - kogito-runtimes job #3030 was: ABORTED
Possible explanation: Most probably a timeout, please review

Reproducer

export BUILD_MVN_OPTS_CURRENT=-T 1C -Dvalidate-formatting -Prun-code-coverage
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/kogito-pipelines/main/.ci/pull-request-config.yaml' -o 'bc' -p kiegroup/kogito-runtimes -u https://github.com/kiegroup/kogito-runtimes/pull/3179 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/kogito/job/main/job/pullrequest/job/kogito-runtimes.tests.kogito-runtimes/3030/display/redirect

Test results:

  • PASSED: 3356
  • FAILED: 0

Those are the test failures: none

See console log:

Console Logs [2023-08-17T17:05:11.655Z] [ERROR] Failed to execute goal org.apache.maven.plugins:maven-failsafe-plugin:3.1.2:verify (integration-test) on project kogito-addons-quarkus-microprofile-config-service-catalog-integration-tests:
[2023-08-17T17:05:11.655Z] [ERROR]
[2023-08-17T17:05:11.655Z] [ERROR] Please refer to /home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/failsafe-reports for the individual test results.
[2023-08-17T17:05:11.655Z] [ERROR] Please refer to dump files (if any exist) [date].dump, [date]-jvmRun[N].dump and [date].dumpstream.
[2023-08-17T17:05:11.655Z] [ERROR] The forked VM terminated without properly saying goodbye. VM crash or System.exit called?
[2023-08-17T17:05:11.655Z] [ERROR] Command was /bin/sh -c cd '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests' && '/usr/lib/jvm/java-11-openjdk-11.0.20.0.8-2.el8.x86_64/bin/java' '-Xms2048m' '-Xmx4g' '-XX:-TieredCompilation' '-XX:TieredStopAtLevel=1' '-Xverify:none' '-jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire/surefirebooter-20230817102247202_396.jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire' '2023-08-17T10-10-17_516-jvmRun3' 'surefire-20230817102247202_394tmp' 'surefire_36-20230817102247202_395tmp'
[2023-08-17T17:05:11.655Z] [ERROR] Error occurred in starting fork, check output in log
[2023-08-17T17:05:11.655Z] [ERROR] Process Exit Code: 143
[2023-08-17T17:05:11.655Z] [ERROR] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.fork(ForkStarter.java:643)
[2023-08-17T17:05:11.655Z] [ERROR] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:285)
[2023-08-17T17:05:11.655Z] [ERROR] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:250)
[2023-08-17T17:05:11.655Z] [ERROR] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeProvider(AbstractSurefireMojo.java:1203)
[2023-08-17T17:05:11.655Z] [ERROR] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeAfterPreconditionsChecked(AbstractSurefireMojo.java:1055)
[2023-08-17T17:05:11.655Z] [ERROR] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.execute(AbstractSurefireMojo.java:871)
[2023-08-17T17:05:11.655Z] [ERROR] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:137)
[2023-08-17T17:05:11.655Z] [ERROR] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2(MojoExecutor.java:370)
[2023-08-17T17:05:11.655Z] [ERROR] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute(MojoExecutor.java:351)
[2023-08-17T17:05:11.655Z] [ERROR] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:215)
[2023-08-17T17:05:11.655Z] [ERROR] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:171)
[2023-08-17T17:05:11.655Z] [ERROR] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:163)
[2023-08-17T17:05:11.655Z] [ERROR] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117)
[2023-08-17T17:05:11.655Z] [ERROR] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:210)
[2023-08-17T17:05:11.655Z] [ERROR] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:195)
[2023-08-17T17:05:11.655Z] [ERROR] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T17:05:11.655Z] [ERROR] at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
[2023-08-17T17:05:11.655Z] [ERROR] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T17:05:11.655Z] [ERROR] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
[2023-08-17T17:05:11.655Z] [ERROR] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
[2023-08-17T17:05:11.655Z] [ERROR] at java.base/java.lang.Thread.run(Thread.java:829)
[2023-08-17T17:05:11.655Z] [ERROR]
[2023-08-17T17:05:11.655Z] [ERROR] org.apache.maven.surefire.booter.SurefireBooterForkException: The forked VM terminated without properly saying goodbye. VM crash or System.exit called?
[2023-08-17T17:05:11.656Z] [ERROR] Command was /bin/sh -c cd '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests' && '/usr/lib/jvm/java-11-openjdk-11.0.20.0.8-2.el8.x86_64/bin/java' '-Xms2048m' '-Xmx4g' '-XX:-TieredCompilation' '-XX:TieredStopAtLevel=1' '-Xverify:none' '-jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire/surefirebooter-20230817102247202_396.jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire' '2023-08-17T10-10-17_516-jvmRun3' 'surefire-20230817102247202_394tmp' 'surefire_36-20230817102247202_395tmp'
[2023-08-17T17:05:11.656Z] [ERROR] Error occurred in starting fork, check output in log
[2023-08-17T17:05:11.656Z] [ERROR] Process Exit Code: 143
[2023-08-17T17:05:11.656Z] [ERROR] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.fork(ForkStarter.java:643)
[2023-08-17T17:05:11.656Z] [ERROR] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:285)
[2023-08-17T17:05:11.656Z] [ERROR] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:250)
[2023-08-17T17:05:11.656Z] [ERROR] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeProvider(AbstractSurefireMojo.java:1203)
[2023-08-17T17:05:11.656Z] [ERROR] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeAfterPreconditionsChecked(AbstractSurefireMojo.java:1055)
[2023-08-17T17:05:11.656Z] [ERROR] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.execute(AbstractSurefireMojo.java:871)
[2023-08-17T17:05:11.656Z] [ERROR] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:137)
[2023-08-17T17:05:11.656Z] [ERROR] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2(MojoExecutor.java:370)
[2023-08-17T17:05:11.656Z] [ERROR] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute(MojoExecutor.java:351)
[2023-08-17T17:05:11.656Z] [ERROR] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:215)
[2023-08-17T17:05:11.656Z] [ERROR] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:171)
[2023-08-17T17:05:11.656Z] [ERROR] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:163)
[2023-08-17T17:05:11.656Z] [ERROR] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117)
[2023-08-17T17:05:11.656Z] [ERROR] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:210)
[2023-08-17T17:05:11.656Z] [ERROR] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:195)
[2023-08-17T17:05:11.656Z] [ERROR] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T17:05:11.656Z] [ERROR] at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
[2023-08-17T17:05:11.656Z] [ERROR] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T17:05:11.656Z] [ERROR] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
[2023-08-17T17:05:11.656Z] [ERROR] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
[2023-08-17T17:05:11.656Z] [ERROR] at java.base/java.lang.Thread.run(Thread.java:829)
[2023-08-17T17:05:11.656Z] [ERROR] -> [Help 1]
[2023-08-17T17:05:11.656Z] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-failsafe-plugin:3.1.2:verify (integration-test) on project kogito-addons-quarkus-microprofile-config-service-catalog-integration-tests:
[2023-08-17T17:05:11.656Z]
[2023-08-17T17:05:11.656Z] Please refer to /home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/failsafe-reports for the individual test results.
[2023-08-17T17:05:11.656Z] Please refer to dump files (if any exist) [date].dump, [date]-jvmRun[N].dump and [date].dumpstream.
[2023-08-17T17:05:11.656Z] The forked VM terminated without properly saying goodbye. VM crash or System.exit called?
[2023-08-17T17:05:11.656Z] Command was /bin/sh -c cd '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests' && '/usr/lib/jvm/java-11-openjdk-11.0.20.0.8-2.el8.x86_64/bin/java' '-Xms2048m' '-Xmx4g' '-XX:-TieredCompilation' '-XX:TieredStopAtLevel=1' '-Xverify:none' '-jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire/surefirebooter-20230817102247202_396.jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire' '2023-08-17T10-10-17_516-jvmRun3' 'surefire-20230817102247202_394tmp' 'surefire_36-20230817102247202_395tmp'
[2023-08-17T17:05:11.656Z] Error occurred in starting fork, check output in log
[2023-08-17T17:05:11.656Z] Process Exit Code: 143
[2023-08-17T17:05:11.656Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.fork(ForkStarter.java:643)
[2023-08-17T17:05:11.656Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:285)
[2023-08-17T17:05:11.656Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:250)
[2023-08-17T17:05:11.656Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeProvider(AbstractSurefireMojo.java:1203)
[2023-08-17T17:05:11.656Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeAfterPreconditionsChecked(AbstractSurefireMojo.java:1055)
[2023-08-17T17:05:11.656Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.execute(AbstractSurefireMojo.java:871)
[2023-08-17T17:05:11.656Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:137)
[2023-08-17T17:05:11.656Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2(MojoExecutor.java:370)
[2023-08-17T17:05:11.656Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute(MojoExecutor.java:351)
[2023-08-17T17:05:11.656Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:215)
[2023-08-17T17:05:11.656Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:171)
[2023-08-17T17:05:11.656Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:163)
[2023-08-17T17:05:11.656Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117)
[2023-08-17T17:05:11.656Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:210)
[2023-08-17T17:05:11.656Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:195)
[2023-08-17T17:05:11.656Z] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T17:05:11.656Z] at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
[2023-08-17T17:05:11.656Z] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T17:05:11.656Z] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
[2023-08-17T17:05:11.656Z] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
[2023-08-17T17:05:11.656Z] at java.base/java.lang.Thread.run(Thread.java:829)
[2023-08-17T17:05:11.656Z]
[2023-08-17T17:05:11.656Z] org.apache.maven.surefire.booter.SurefireBooterForkException: The forked VM terminated without properly saying goodbye. VM crash or System.exit called?
[2023-08-17T17:05:11.656Z] Command was /bin/sh -c cd '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests' && '/usr/lib/jvm/java-11-openjdk-11.0.20.0.8-2.el8.x86_64/bin/java' '-Xms2048m' '-Xmx4g' '-XX:-TieredCompilation' '-XX:TieredStopAtLevel=1' '-Xverify:none' '-jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire/surefirebooter-20230817102247202_396.jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire' '2023-08-17T10-10-17_516-jvmRun3' 'surefire-20230817102247202_394tmp' 'surefire_36-20230817102247202_395tmp'
[2023-08-17T17:05:11.656Z] Error occurred in starting fork, check output in log
[2023-08-17T17:05:11.656Z] Process Exit Code: 143
[2023-08-17T17:05:11.656Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.fork(ForkStarter.java:643)
[2023-08-17T17:05:11.656Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:285)
[2023-08-17T17:05:11.656Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:250)
[2023-08-17T17:05:11.656Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeProvider(AbstractSurefireMojo.java:1203)
[2023-08-17T17:05:11.656Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeAfterPreconditionsChecked(AbstractSurefireMojo.java:1055)
[2023-08-17T17:05:11.656Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.execute(AbstractSurefireMojo.java:871)
[2023-08-17T17:05:11.656Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:137)
[2023-08-17T17:05:11.656Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2(MojoExecutor.java:370)
[2023-08-17T17:05:11.656Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute(MojoExecutor.java:351)
[2023-08-17T17:05:11.656Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:215)
[2023-08-17T17:05:11.656Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:171)
[2023-08-17T17:05:11.656Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:163)
[2023-08-17T17:05:11.656Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117)
[2023-08-17T17:05:11.656Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:210)
[2023-08-17T17:05:11.656Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:195)
[2023-08-17T17:05:11.656Z] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T17:05:11.656Z] at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
[2023-08-17T17:05:11.656Z] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T17:05:11.656Z] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
[2023-08-17T17:05:11.656Z] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
[2023-08-17T17:05:11.656Z] at java.base/java.lang.Thread.run(Thread.java:829)
[2023-08-17T17:05:11.656Z]
[2023-08-17T17:05:11.656Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:375)
[2023-08-17T17:05:11.656Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-17T17:05:11.656Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-17T17:05:11.656Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-17T17:05:11.656Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-17T17:05:11.656Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-17T17:05:11.656Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call (MultiThreadedBuilder.java:210)
[2023-08-17T17:05:11.656Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call (MultiThreadedBuilder.java:195)
[2023-08-17T17:05:11.656Z] at java.util.concurrent.FutureTask.run (FutureTask.java:264)
[2023-08-17T17:05:11.656Z] at java.util.concurrent.Executors$RunnableAdapter.call (Executors.java:515)
[2023-08-17T17:05:11.656Z] at java.util.concurrent.FutureTask.run (FutureTask.java:264)
[2023-08-17T17:05:11.656Z] at java.util.concurrent.ThreadPoolExecutor.runWorker (ThreadPoolExecutor.java:1128)
[2023-08-17T17:05:11.656Z] at java.util.concurrent.ThreadPoolExecutor$Worker.run (ThreadPoolExecutor.java:628)
[2023-08-17T17:05:11.656Z] at java.lang.Thread.run (Thread.java:829)
[2023-08-17T17:05:11.656Z] Caused by: org.apache.maven.plugin.MojoExecutionException:
[2023-08-17T17:05:11.656Z]
[2023-08-17T17:05:11.656Z] Please refer to /home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/failsafe-reports for the individual test results.
[2023-08-17T17:05:11.656Z] Please refer to dump files (if any exist) [date].dump, [date]-jvmRun[N].dump and [date].dumpstream.
[2023-08-17T17:05:11.656Z] The forked VM terminated without properly saying goodbye. VM crash or System.exit called?
[2023-08-17T17:05:11.656Z] Command was /bin/sh -c cd '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests' && '/usr/lib/jvm/java-11-openjdk-11.0.20.0.8-2.el8.x86_64/bin/java' '-Xms2048m' '-Xmx4g' '-XX:-TieredCompilation' '-XX:TieredStopAtLevel=1' '-Xverify:none' '-jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire/surefirebooter-20230817102247202_396.jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire' '2023-08-17T10-10-17_516-jvmRun3' 'surefire-20230817102247202_394tmp' 'surefire_36-20230817102247202_395tmp'
[2023-08-17T17:05:11.656Z] Error occurred in starting fork, check output in log
[2023-08-17T17:05:11.656Z] Process Exit Code: 143
[2023-08-17T17:05:11.656Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.fork(ForkStarter.java:643)
[2023-08-17T17:05:11.656Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:285)
[2023-08-17T17:05:11.656Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:250)
[2023-08-17T17:05:11.657Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeProvider(AbstractSurefireMojo.java:1203)
[2023-08-17T17:05:11.657Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeAfterPreconditionsChecked(AbstractSurefireMojo.java:1055)
[2023-08-17T17:05:11.657Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.execute(AbstractSurefireMojo.java:871)
[2023-08-17T17:05:11.657Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:137)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2(MojoExecutor.java:370)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute(MojoExecutor.java:351)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:215)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:171)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:163)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:210)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:195)
[2023-08-17T17:05:11.657Z] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T17:05:11.657Z] at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
[2023-08-17T17:05:11.657Z] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T17:05:11.657Z] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
[2023-08-17T17:05:11.657Z] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
[2023-08-17T17:05:11.657Z] at java.base/java.lang.Thread.run(Thread.java:829)
[2023-08-17T17:05:11.657Z]
[2023-08-17T17:05:11.657Z] org.apache.maven.surefire.booter.SurefireBooterForkException: The forked VM terminated without properly saying goodbye. VM crash or System.exit called?
[2023-08-17T17:05:11.657Z] Command was /bin/sh -c cd '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests' && '/usr/lib/jvm/java-11-openjdk-11.0.20.0.8-2.el8.x86_64/bin/java' '-Xms2048m' '-Xmx4g' '-XX:-TieredCompilation' '-XX:TieredStopAtLevel=1' '-Xverify:none' '-jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire/surefirebooter-20230817102247202_396.jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire' '2023-08-17T10-10-17_516-jvmRun3' 'surefire-20230817102247202_394tmp' 'surefire_36-20230817102247202_395tmp'
[2023-08-17T17:05:11.657Z] Error occurred in starting fork, check output in log
[2023-08-17T17:05:11.657Z] Process Exit Code: 143
[2023-08-17T17:05:11.657Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.fork(ForkStarter.java:643)
[2023-08-17T17:05:11.657Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:285)
[2023-08-17T17:05:11.657Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:250)
[2023-08-17T17:05:11.657Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeProvider(AbstractSurefireMojo.java:1203)
[2023-08-17T17:05:11.657Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeAfterPreconditionsChecked(AbstractSurefireMojo.java:1055)
[2023-08-17T17:05:11.657Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.execute(AbstractSurefireMojo.java:871)
[2023-08-17T17:05:11.657Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:137)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2(MojoExecutor.java:370)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute(MojoExecutor.java:351)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:215)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:171)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:163)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:210)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:195)
[2023-08-17T17:05:11.657Z] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T17:05:11.657Z] at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
[2023-08-17T17:05:11.657Z] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T17:05:11.657Z] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
[2023-08-17T17:05:11.657Z] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
[2023-08-17T17:05:11.657Z] at java.base/java.lang.Thread.run(Thread.java:829)
[2023-08-17T17:05:11.657Z]
[2023-08-17T17:05:11.657Z] at org.apache.maven.plugin.surefire.SurefireHelper.reportExecution (SurefireHelper.java:154)
[2023-08-17T17:05:11.657Z] at org.apache.maven.plugin.failsafe.VerifyMojo.execute (VerifyMojo.java:190)
[2023-08-17T17:05:11.657Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call (MultiThreadedBuilder.java:210)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call (MultiThreadedBuilder.java:195)
[2023-08-17T17:05:11.657Z] at java.util.concurrent.FutureTask.run (FutureTask.java:264)
[2023-08-17T17:05:11.657Z] at java.util.concurrent.Executors$RunnableAdapter.call (Executors.java:515)
[2023-08-17T17:05:11.657Z] at java.util.concurrent.FutureTask.run (FutureTask.java:264)
[2023-08-17T17:05:11.657Z] at java.util.concurrent.ThreadPoolExecutor.runWorker (ThreadPoolExecutor.java:1128)
[2023-08-17T17:05:11.657Z] at java.util.concurrent.ThreadPoolExecutor$Worker.run (ThreadPoolExecutor.java:628)
[2023-08-17T17:05:11.657Z] at java.lang.Thread.run (Thread.java:829)
[2023-08-17T17:05:11.657Z] Caused by: org.apache.maven.surefire.booter.SurefireBooterForkException: The forked VM terminated without properly saying goodbye. VM crash or System.exit called?
[2023-08-17T17:05:11.657Z] Command was /bin/sh -c cd '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests' && '/usr/lib/jvm/java-11-openjdk-11.0.20.0.8-2.el8.x86_64/bin/java' '-Xms2048m' '-Xmx4g' '-XX:-TieredCompilation' '-XX:TieredStopAtLevel=1' '-Xverify:none' '-jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire/surefirebooter-20230817102247202_396.jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire' '2023-08-17T10-10-17_516-jvmRun3' 'surefire-20230817102247202_394tmp' 'surefire_36-20230817102247202_395tmp'
[2023-08-17T17:05:11.657Z] Error occurred in starting fork, check output in log
[2023-08-17T17:05:11.657Z] Process Exit Code: 143
[2023-08-17T17:05:11.657Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.fork(ForkStarter.java:643)
[2023-08-17T17:05:11.657Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:285)
[2023-08-17T17:05:11.657Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:250)
[2023-08-17T17:05:11.657Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeProvider(AbstractSurefireMojo.java:1203)
[2023-08-17T17:05:11.657Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeAfterPreconditionsChecked(AbstractSurefireMojo.java:1055)
[2023-08-17T17:05:11.657Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.execute(AbstractSurefireMojo.java:871)
[2023-08-17T17:05:11.657Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:137)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2(MojoExecutor.java:370)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute(MojoExecutor.java:351)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:215)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:171)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:163)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:210)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:195)
[2023-08-17T17:05:11.657Z] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T17:05:11.657Z] at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
[2023-08-17T17:05:11.657Z] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T17:05:11.657Z] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
[2023-08-17T17:05:11.657Z] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
[2023-08-17T17:05:11.657Z] at java.base/java.lang.Thread.run(Thread.java:829)
[2023-08-17T17:05:11.657Z]
[2023-08-17T17:05:11.657Z] at org.apache.maven.plugin.failsafe.VerifyMojo.getBooterForkException (VerifyMojo.java:198)
[2023-08-17T17:05:11.657Z] at org.apache.maven.plugin.failsafe.VerifyMojo.execute (VerifyMojo.java:190)
[2023-08-17T17:05:11.657Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call (MultiThreadedBuilder.java:210)
[2023-08-17T17:05:11.657Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call (MultiThreadedBuilder.java:195)
[2023-08-17T17:05:11.657Z] at java.util.concurrent.FutureTask.run (FutureTask.java:264)
[2023-08-17T17:05:11.657Z] at java.util.concurrent.Executors$RunnableAdapter.call (Executors.java:515)
[2023-08-17T17:05:11.657Z] at java.util.concurrent.FutureTask.run (FutureTask.java:264)
[2023-08-17T17:05:11.657Z] at java.util.concurrent.ThreadPoolExecutor.runWorker (ThreadPoolExecutor.java:1128)
[2023-08-17T17:05:11.657Z] at java.util.concurrent.ThreadPoolExecutor$Worker.run (ThreadPoolExecutor.java:628)
[2023-08-17T17:05:11.657Z] at java.lang.Thread.run (Thread.java:829)
[2023-08-17T17:05:11.657Z] [ERROR]
[2023-08-17T17:05:11.657Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2023-08-17T17:05:11.657Z] [ERROR]
[2023-08-17T17:05:11.657Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2023-08-17T17:05:11.657Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[2023-08-17T17:05:11.657Z] [ERROR]
[2023-08-17T17:05:11.657Z] [ERROR] After correcting the problems, you can resume the build with the command
[2023-08-17T17:05:11.658Z] [ERROR] mvn -rf :kogito-addons-quarkus-microprofile-config-service-catalog-integration-tests
[2023-08-17T17:05:11.658Z] [INFO] kiegroup/kogito-runtimes failed. Won't execute remaining commands and projects
[2023-08-17T17:05:11.658Z] [INFO] Execution summary for kiegroup/kogito-runtimes
[2023-08-17T17:05:11.658Z] # [BEFORE] [kiegroup/kogito-runtimes] export INTEGRATION_BRANCH=
[2023-08-17T17:05:11.658Z] [INFO] OK [Executed in 0.179566 ms]
[2023-08-17T17:05:11.658Z]
[2023-08-17T17:05:11.658Z] # [BEFORE] [kiegroup/kogito-runtimes] bash -c "if [ ! -z '' ] && [ -f .ci/environments/update.sh ]; then .ci/environments/update.sh ; fi"
[2023-08-17T17:05:11.658Z] [INFO] OK [Executed in 7.996456 ms]
[2023-08-17T17:05:11.658Z]
[2023-08-17T17:05:11.658Z] # [COMMANDS] [kiegroup/kogito-runtimes] export MVN_CMD=`bash -c "if [ '' = 'true' ]; then printf 'deploy '; else printf 'install'; fi"`
[2023-08-17T17:05:11.658Z] [INFO] OK [Executed in 6.844716 ms]
[2023-08-17T17:05:11.658Z]
[2023-08-17T17:05:11.658Z] # [COMMANDS] [kiegroup/kogito-runtimes] mvn dependency:tree clean -Dfull install -s /home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes@tmp/config1758373660637564tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -T 1C -Dvalidate-formatting -Prun-code-coverage -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B
[2023-08-17T17:05:11.658Z] [INFO] NOT OK [Executed in 10509862.525863 ms]
[2023-08-17T17:05:11.658Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 143
[2023-08-17T17:05:11.658Z]
[2023-08-17T17:05:11.658Z] [INFO] [AFTER] No commands were found for kiegroup/kogito-runtimes
[2023-08-17T17:05:11.658Z]
[2023-08-17T17:05:11.658Z] # Uploading artifacts
[2023-08-17T17:05:11.658Z] [INFO] Will not upload any artifacts in CLI environment
[2023-08-17T17:05:11.658Z]
[2023-08-17T17:05:11.658Z] [ERROR] Failed to execute commands for kiegroup/kogito-runtimes
[2023-08-17T17:05:11.658Z] [ERROR] Failed to execute mvn dependency:tree clean -Dfull install -s /home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes@tmp/config1758373660637564tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -T 1C -Dvalidate-formatting -Prun-code-coverage -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B :
[2023-08-17T17:05:11.658Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 143
[2023-08-17T17:05:11.666Z] script returned exit code 1
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] }
[2023-08-17T17:05:11.733Z] Deleting 1 temporary files
[Pipeline] // configFileProvider
[Pipeline] }
[Pipeline] // script
Post stage
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-17T17:05:12.138Z] + find . -type d -name node_modules -exec rm -rf '{}' ';'
[Pipeline] junit
[2023-08-17T17:05:20.228Z] Recording test results
[2023-08-17T17:05:27.281Z] [Checks API] No suitable checks publisher found.
[Pipeline] archiveArtifacts
[2023-08-17T17:05:27.299Z] Archiving artifacts
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-17T17:05:28.782Z] + rm -rf console.log
[Pipeline] sh
[2023-08-17T17:05:29.074Z] + wget --no-check-certificate -qO - https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/kogito/job/main/job/pullrequest/job/kogito-runtimes.tests.kogito-runtimes/3030/consoleText
[2023-08-17T17:05:29.074Z] + tail -n 300

@hbelmiro
Copy link
Contributor Author

jenkins rerun kogito-runtimes tests

Copy link
Member

@ricardozanini ricardozanini left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great work, thanks! Please update the Discovery Guide and open a JIRA to edit the Images and the Operator. We might have these opened in the related EPIC.

Signed-off-by: Helber Belmiro <helber.belmiro@gmail.com>
@kie-ci3
Copy link
Contributor

kie-ci3 commented Aug 17, 2023

(tests) - kogito-runtimes job #3032 was: ABORTED
Possible explanation: Most probably a timeout, please review

Reproducer

export BUILD_MVN_OPTS_CURRENT=-T 1C -Dvalidate-formatting -Prun-code-coverage
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/kogito-pipelines/main/.ci/pull-request-config.yaml' -o 'bc' -p kiegroup/kogito-runtimes -u https://github.com/kiegroup/kogito-runtimes/pull/3179 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/kogito/job/main/job/pullrequest/job/kogito-runtimes.tests.kogito-runtimes/3032/display/redirect

Test results:

  • PASSED: 3356
  • FAILED: 0

Those are the test failures: none

See console log:

Console Logs [2023-08-17T20:24:33.195Z] [ERROR] Failed to execute goal org.apache.maven.plugins:maven-failsafe-plugin:3.1.2:verify (integration-test) on project kogito-addons-quarkus-microprofile-config-service-catalog-integration-tests:
[2023-08-17T20:24:33.195Z] [ERROR]
[2023-08-17T20:24:33.195Z] [ERROR] Please refer to /home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/failsafe-reports for the individual test results.
[2023-08-17T20:24:33.195Z] [ERROR] Please refer to dump files (if any exist) [date].dump, [date]-jvmRun[N].dump and [date].dumpstream.
[2023-08-17T20:24:33.195Z] [ERROR] The forked VM terminated without properly saying goodbye. VM crash or System.exit called?
[2023-08-17T20:24:33.195Z] [ERROR] Command was /bin/sh -c cd '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests' && '/usr/lib/jvm/java-11-openjdk-11.0.20.0.8-2.el8.x86_64/bin/java' '-Xms2048m' '-Xmx4g' '-XX:-TieredCompilation' '-XX:TieredStopAtLevel=1' '-Xverify:none' '-jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire/surefirebooter-20230817134247864_388.jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire' '2023-08-17T13-29-46_362-jvmRun1' 'surefire-20230817134247864_386tmp' 'surefire_35-20230817134247864_387tmp'
[2023-08-17T20:24:33.195Z] [ERROR] Error occurred in starting fork, check output in log
[2023-08-17T20:24:33.195Z] [ERROR] Process Exit Code: 143
[2023-08-17T20:24:33.195Z] [ERROR] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.fork(ForkStarter.java:643)
[2023-08-17T20:24:33.195Z] [ERROR] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:285)
[2023-08-17T20:24:33.195Z] [ERROR] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:250)
[2023-08-17T20:24:33.195Z] [ERROR] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeProvider(AbstractSurefireMojo.java:1203)
[2023-08-17T20:24:33.195Z] [ERROR] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeAfterPreconditionsChecked(AbstractSurefireMojo.java:1055)
[2023-08-17T20:24:33.195Z] [ERROR] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.execute(AbstractSurefireMojo.java:871)
[2023-08-17T20:24:33.195Z] [ERROR] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:137)
[2023-08-17T20:24:33.195Z] [ERROR] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2(MojoExecutor.java:370)
[2023-08-17T20:24:33.195Z] [ERROR] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute(MojoExecutor.java:351)
[2023-08-17T20:24:33.195Z] [ERROR] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:215)
[2023-08-17T20:24:33.195Z] [ERROR] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:171)
[2023-08-17T20:24:33.195Z] [ERROR] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:163)
[2023-08-17T20:24:33.195Z] [ERROR] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117)
[2023-08-17T20:24:33.195Z] [ERROR] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:210)
[2023-08-17T20:24:33.195Z] [ERROR] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:195)
[2023-08-17T20:24:33.195Z] [ERROR] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T20:24:33.195Z] [ERROR] at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
[2023-08-17T20:24:33.195Z] [ERROR] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T20:24:33.195Z] [ERROR] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
[2023-08-17T20:24:33.195Z] [ERROR] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
[2023-08-17T20:24:33.195Z] [ERROR] at java.base/java.lang.Thread.run(Thread.java:829)
[2023-08-17T20:24:33.195Z] [ERROR]
[2023-08-17T20:24:33.195Z] [ERROR] org.apache.maven.surefire.booter.SurefireBooterForkException: The forked VM terminated without properly saying goodbye. VM crash or System.exit called?
[2023-08-17T20:24:33.196Z] [ERROR] Command was /bin/sh -c cd '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests' && '/usr/lib/jvm/java-11-openjdk-11.0.20.0.8-2.el8.x86_64/bin/java' '-Xms2048m' '-Xmx4g' '-XX:-TieredCompilation' '-XX:TieredStopAtLevel=1' '-Xverify:none' '-jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire/surefirebooter-20230817134247864_388.jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire' '2023-08-17T13-29-46_362-jvmRun1' 'surefire-20230817134247864_386tmp' 'surefire_35-20230817134247864_387tmp'
[2023-08-17T20:24:33.196Z] [ERROR] Error occurred in starting fork, check output in log
[2023-08-17T20:24:33.196Z] [ERROR] Process Exit Code: 143
[2023-08-17T20:24:33.196Z] [ERROR] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.fork(ForkStarter.java:643)
[2023-08-17T20:24:33.196Z] [ERROR] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:285)
[2023-08-17T20:24:33.196Z] [ERROR] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:250)
[2023-08-17T20:24:33.196Z] [ERROR] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeProvider(AbstractSurefireMojo.java:1203)
[2023-08-17T20:24:33.196Z] [ERROR] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeAfterPreconditionsChecked(AbstractSurefireMojo.java:1055)
[2023-08-17T20:24:33.196Z] [ERROR] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.execute(AbstractSurefireMojo.java:871)
[2023-08-17T20:24:33.196Z] [ERROR] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:137)
[2023-08-17T20:24:33.196Z] [ERROR] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2(MojoExecutor.java:370)
[2023-08-17T20:24:33.196Z] [ERROR] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute(MojoExecutor.java:351)
[2023-08-17T20:24:33.196Z] [ERROR] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:215)
[2023-08-17T20:24:33.196Z] [ERROR] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:171)
[2023-08-17T20:24:33.196Z] [ERROR] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:163)
[2023-08-17T20:24:33.196Z] [ERROR] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117)
[2023-08-17T20:24:33.196Z] [ERROR] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:210)
[2023-08-17T20:24:33.196Z] [ERROR] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:195)
[2023-08-17T20:24:33.196Z] [ERROR] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T20:24:33.196Z] [ERROR] at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
[2023-08-17T20:24:33.196Z] [ERROR] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T20:24:33.196Z] [ERROR] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
[2023-08-17T20:24:33.196Z] [ERROR] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
[2023-08-17T20:24:33.196Z] [ERROR] at java.base/java.lang.Thread.run(Thread.java:829)
[2023-08-17T20:24:33.196Z] [ERROR] -> [Help 1]
[2023-08-17T20:24:33.196Z] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-failsafe-plugin:3.1.2:verify (integration-test) on project kogito-addons-quarkus-microprofile-config-service-catalog-integration-tests:
[2023-08-17T20:24:33.196Z]
[2023-08-17T20:24:33.196Z] Please refer to /home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/failsafe-reports for the individual test results.
[2023-08-17T20:24:33.196Z] Please refer to dump files (if any exist) [date].dump, [date]-jvmRun[N].dump and [date].dumpstream.
[2023-08-17T20:24:33.196Z] The forked VM terminated without properly saying goodbye. VM crash or System.exit called?
[2023-08-17T20:24:33.196Z] Command was /bin/sh -c cd '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests' && '/usr/lib/jvm/java-11-openjdk-11.0.20.0.8-2.el8.x86_64/bin/java' '-Xms2048m' '-Xmx4g' '-XX:-TieredCompilation' '-XX:TieredStopAtLevel=1' '-Xverify:none' '-jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire/surefirebooter-20230817134247864_388.jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire' '2023-08-17T13-29-46_362-jvmRun1' 'surefire-20230817134247864_386tmp' 'surefire_35-20230817134247864_387tmp'
[2023-08-17T20:24:33.196Z] Error occurred in starting fork, check output in log
[2023-08-17T20:24:33.196Z] Process Exit Code: 143
[2023-08-17T20:24:33.196Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.fork(ForkStarter.java:643)
[2023-08-17T20:24:33.196Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:285)
[2023-08-17T20:24:33.196Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:250)
[2023-08-17T20:24:33.196Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeProvider(AbstractSurefireMojo.java:1203)
[2023-08-17T20:24:33.196Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeAfterPreconditionsChecked(AbstractSurefireMojo.java:1055)
[2023-08-17T20:24:33.196Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.execute(AbstractSurefireMojo.java:871)
[2023-08-17T20:24:33.196Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:137)
[2023-08-17T20:24:33.196Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2(MojoExecutor.java:370)
[2023-08-17T20:24:33.196Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute(MojoExecutor.java:351)
[2023-08-17T20:24:33.196Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:215)
[2023-08-17T20:24:33.196Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:171)
[2023-08-17T20:24:33.196Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:163)
[2023-08-17T20:24:33.196Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117)
[2023-08-17T20:24:33.196Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:210)
[2023-08-17T20:24:33.196Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:195)
[2023-08-17T20:24:33.196Z] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T20:24:33.196Z] at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
[2023-08-17T20:24:33.196Z] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T20:24:33.196Z] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
[2023-08-17T20:24:33.196Z] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
[2023-08-17T20:24:33.196Z] at java.base/java.lang.Thread.run(Thread.java:829)
[2023-08-17T20:24:33.196Z]
[2023-08-17T20:24:33.196Z] org.apache.maven.surefire.booter.SurefireBooterForkException: The forked VM terminated without properly saying goodbye. VM crash or System.exit called?
[2023-08-17T20:24:33.196Z] Command was /bin/sh -c cd '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests' && '/usr/lib/jvm/java-11-openjdk-11.0.20.0.8-2.el8.x86_64/bin/java' '-Xms2048m' '-Xmx4g' '-XX:-TieredCompilation' '-XX:TieredStopAtLevel=1' '-Xverify:none' '-jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire/surefirebooter-20230817134247864_388.jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire' '2023-08-17T13-29-46_362-jvmRun1' 'surefire-20230817134247864_386tmp' 'surefire_35-20230817134247864_387tmp'
[2023-08-17T20:24:33.196Z] Error occurred in starting fork, check output in log
[2023-08-17T20:24:33.196Z] Process Exit Code: 143
[2023-08-17T20:24:33.196Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.fork(ForkStarter.java:643)
[2023-08-17T20:24:33.196Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:285)
[2023-08-17T20:24:33.196Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:250)
[2023-08-17T20:24:33.196Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeProvider(AbstractSurefireMojo.java:1203)
[2023-08-17T20:24:33.196Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeAfterPreconditionsChecked(AbstractSurefireMojo.java:1055)
[2023-08-17T20:24:33.196Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.execute(AbstractSurefireMojo.java:871)
[2023-08-17T20:24:33.196Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:137)
[2023-08-17T20:24:33.196Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2(MojoExecutor.java:370)
[2023-08-17T20:24:33.196Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute(MojoExecutor.java:351)
[2023-08-17T20:24:33.196Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:215)
[2023-08-17T20:24:33.196Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:171)
[2023-08-17T20:24:33.196Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:163)
[2023-08-17T20:24:33.196Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117)
[2023-08-17T20:24:33.196Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:210)
[2023-08-17T20:24:33.196Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:195)
[2023-08-17T20:24:33.196Z] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T20:24:33.196Z] at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
[2023-08-17T20:24:33.196Z] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T20:24:33.196Z] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
[2023-08-17T20:24:33.196Z] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
[2023-08-17T20:24:33.196Z] at java.base/java.lang.Thread.run(Thread.java:829)
[2023-08-17T20:24:33.196Z]
[2023-08-17T20:24:33.196Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:375)
[2023-08-17T20:24:33.196Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-17T20:24:33.196Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-17T20:24:33.196Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-17T20:24:33.196Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-17T20:24:33.196Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-17T20:24:33.196Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call (MultiThreadedBuilder.java:210)
[2023-08-17T20:24:33.196Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call (MultiThreadedBuilder.java:195)
[2023-08-17T20:24:33.196Z] at java.util.concurrent.FutureTask.run (FutureTask.java:264)
[2023-08-17T20:24:33.196Z] at java.util.concurrent.Executors$RunnableAdapter.call (Executors.java:515)
[2023-08-17T20:24:33.196Z] at java.util.concurrent.FutureTask.run (FutureTask.java:264)
[2023-08-17T20:24:33.196Z] at java.util.concurrent.ThreadPoolExecutor.runWorker (ThreadPoolExecutor.java:1128)
[2023-08-17T20:24:33.196Z] at java.util.concurrent.ThreadPoolExecutor$Worker.run (ThreadPoolExecutor.java:628)
[2023-08-17T20:24:33.196Z] at java.lang.Thread.run (Thread.java:829)
[2023-08-17T20:24:33.196Z] Caused by: org.apache.maven.plugin.MojoExecutionException:
[2023-08-17T20:24:33.196Z]
[2023-08-17T20:24:33.196Z] Please refer to /home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/failsafe-reports for the individual test results.
[2023-08-17T20:24:33.196Z] Please refer to dump files (if any exist) [date].dump, [date]-jvmRun[N].dump and [date].dumpstream.
[2023-08-17T20:24:33.196Z] The forked VM terminated without properly saying goodbye. VM crash or System.exit called?
[2023-08-17T20:24:33.196Z] Command was /bin/sh -c cd '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests' && '/usr/lib/jvm/java-11-openjdk-11.0.20.0.8-2.el8.x86_64/bin/java' '-Xms2048m' '-Xmx4g' '-XX:-TieredCompilation' '-XX:TieredStopAtLevel=1' '-Xverify:none' '-jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire/surefirebooter-20230817134247864_388.jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire' '2023-08-17T13-29-46_362-jvmRun1' 'surefire-20230817134247864_386tmp' 'surefire_35-20230817134247864_387tmp'
[2023-08-17T20:24:33.197Z] Error occurred in starting fork, check output in log
[2023-08-17T20:24:33.197Z] Process Exit Code: 143
[2023-08-17T20:24:33.197Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.fork(ForkStarter.java:643)
[2023-08-17T20:24:33.197Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:285)
[2023-08-17T20:24:33.197Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:250)
[2023-08-17T20:24:33.197Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeProvider(AbstractSurefireMojo.java:1203)
[2023-08-17T20:24:33.197Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeAfterPreconditionsChecked(AbstractSurefireMojo.java:1055)
[2023-08-17T20:24:33.197Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.execute(AbstractSurefireMojo.java:871)
[2023-08-17T20:24:33.197Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:137)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2(MojoExecutor.java:370)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute(MojoExecutor.java:351)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:215)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:171)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:163)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:210)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:195)
[2023-08-17T20:24:33.197Z] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T20:24:33.197Z] at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
[2023-08-17T20:24:33.197Z] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T20:24:33.197Z] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
[2023-08-17T20:24:33.197Z] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
[2023-08-17T20:24:33.197Z] at java.base/java.lang.Thread.run(Thread.java:829)
[2023-08-17T20:24:33.197Z]
[2023-08-17T20:24:33.197Z] org.apache.maven.surefire.booter.SurefireBooterForkException: The forked VM terminated without properly saying goodbye. VM crash or System.exit called?
[2023-08-17T20:24:33.197Z] Command was /bin/sh -c cd '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests' && '/usr/lib/jvm/java-11-openjdk-11.0.20.0.8-2.el8.x86_64/bin/java' '-Xms2048m' '-Xmx4g' '-XX:-TieredCompilation' '-XX:TieredStopAtLevel=1' '-Xverify:none' '-jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire/surefirebooter-20230817134247864_388.jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire' '2023-08-17T13-29-46_362-jvmRun1' 'surefire-20230817134247864_386tmp' 'surefire_35-20230817134247864_387tmp'
[2023-08-17T20:24:33.197Z] Error occurred in starting fork, check output in log
[2023-08-17T20:24:33.197Z] Process Exit Code: 143
[2023-08-17T20:24:33.197Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.fork(ForkStarter.java:643)
[2023-08-17T20:24:33.197Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:285)
[2023-08-17T20:24:33.197Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:250)
[2023-08-17T20:24:33.197Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeProvider(AbstractSurefireMojo.java:1203)
[2023-08-17T20:24:33.197Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeAfterPreconditionsChecked(AbstractSurefireMojo.java:1055)
[2023-08-17T20:24:33.197Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.execute(AbstractSurefireMojo.java:871)
[2023-08-17T20:24:33.197Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:137)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2(MojoExecutor.java:370)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute(MojoExecutor.java:351)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:215)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:171)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:163)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:210)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:195)
[2023-08-17T20:24:33.197Z] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T20:24:33.197Z] at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
[2023-08-17T20:24:33.197Z] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T20:24:33.197Z] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
[2023-08-17T20:24:33.197Z] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
[2023-08-17T20:24:33.197Z] at java.base/java.lang.Thread.run(Thread.java:829)
[2023-08-17T20:24:33.197Z]
[2023-08-17T20:24:33.197Z] at org.apache.maven.plugin.surefire.SurefireHelper.reportExecution (SurefireHelper.java:154)
[2023-08-17T20:24:33.197Z] at org.apache.maven.plugin.failsafe.VerifyMojo.execute (VerifyMojo.java:190)
[2023-08-17T20:24:33.197Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call (MultiThreadedBuilder.java:210)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call (MultiThreadedBuilder.java:195)
[2023-08-17T20:24:33.197Z] at java.util.concurrent.FutureTask.run (FutureTask.java:264)
[2023-08-17T20:24:33.197Z] at java.util.concurrent.Executors$RunnableAdapter.call (Executors.java:515)
[2023-08-17T20:24:33.197Z] at java.util.concurrent.FutureTask.run (FutureTask.java:264)
[2023-08-17T20:24:33.197Z] at java.util.concurrent.ThreadPoolExecutor.runWorker (ThreadPoolExecutor.java:1128)
[2023-08-17T20:24:33.197Z] at java.util.concurrent.ThreadPoolExecutor$Worker.run (ThreadPoolExecutor.java:628)
[2023-08-17T20:24:33.197Z] at java.lang.Thread.run (Thread.java:829)
[2023-08-17T20:24:33.197Z] Caused by: org.apache.maven.surefire.booter.SurefireBooterForkException: The forked VM terminated without properly saying goodbye. VM crash or System.exit called?
[2023-08-17T20:24:33.197Z] Command was /bin/sh -c cd '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests' && '/usr/lib/jvm/java-11-openjdk-11.0.20.0.8-2.el8.x86_64/bin/java' '-Xms2048m' '-Xmx4g' '-XX:-TieredCompilation' '-XX:TieredStopAtLevel=1' '-Xverify:none' '-jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire/surefirebooter-20230817134247864_388.jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire' '2023-08-17T13-29-46_362-jvmRun1' 'surefire-20230817134247864_386tmp' 'surefire_35-20230817134247864_387tmp'
[2023-08-17T20:24:33.197Z] Error occurred in starting fork, check output in log
[2023-08-17T20:24:33.197Z] Process Exit Code: 143
[2023-08-17T20:24:33.197Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.fork(ForkStarter.java:643)
[2023-08-17T20:24:33.197Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:285)
[2023-08-17T20:24:33.197Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:250)
[2023-08-17T20:24:33.197Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeProvider(AbstractSurefireMojo.java:1203)
[2023-08-17T20:24:33.197Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeAfterPreconditionsChecked(AbstractSurefireMojo.java:1055)
[2023-08-17T20:24:33.197Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.execute(AbstractSurefireMojo.java:871)
[2023-08-17T20:24:33.197Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:137)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2(MojoExecutor.java:370)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute(MojoExecutor.java:351)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:215)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:171)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:163)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:210)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:195)
[2023-08-17T20:24:33.197Z] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T20:24:33.197Z] at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
[2023-08-17T20:24:33.197Z] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T20:24:33.197Z] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
[2023-08-17T20:24:33.197Z] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
[2023-08-17T20:24:33.197Z] at java.base/java.lang.Thread.run(Thread.java:829)
[2023-08-17T20:24:33.197Z]
[2023-08-17T20:24:33.197Z] at org.apache.maven.plugin.failsafe.VerifyMojo.getBooterForkException (VerifyMojo.java:198)
[2023-08-17T20:24:33.197Z] at org.apache.maven.plugin.failsafe.VerifyMojo.execute (VerifyMojo.java:190)
[2023-08-17T20:24:33.197Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call (MultiThreadedBuilder.java:210)
[2023-08-17T20:24:33.197Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call (MultiThreadedBuilder.java:195)
[2023-08-17T20:24:33.197Z] at java.util.concurrent.FutureTask.run (FutureTask.java:264)
[2023-08-17T20:24:33.197Z] at java.util.concurrent.Executors$RunnableAdapter.call (Executors.java:515)
[2023-08-17T20:24:33.197Z] at java.util.concurrent.FutureTask.run (FutureTask.java:264)
[2023-08-17T20:24:33.197Z] at java.util.concurrent.ThreadPoolExecutor.runWorker (ThreadPoolExecutor.java:1128)
[2023-08-17T20:24:33.197Z] at java.util.concurrent.ThreadPoolExecutor$Worker.run (ThreadPoolExecutor.java:628)
[2023-08-17T20:24:33.197Z] at java.lang.Thread.run (Thread.java:829)
[2023-08-17T20:24:33.197Z] [ERROR]
[2023-08-17T20:24:33.197Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2023-08-17T20:24:33.197Z] [ERROR]
[2023-08-17T20:24:33.197Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2023-08-17T20:24:33.197Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[2023-08-17T20:24:33.197Z] [ERROR]
[2023-08-17T20:24:33.197Z] [ERROR] After correcting the problems, you can resume the build with the command
[2023-08-17T20:24:33.197Z] [ERROR] mvn -rf :kogito-addons-quarkus-microprofile-config-service-catalog-integration-tests
[2023-08-17T20:24:33.198Z] [INFO] kiegroup/kogito-runtimes failed. Won't execute remaining commands and projects
[2023-08-17T20:24:33.198Z] [INFO] Execution summary for kiegroup/kogito-runtimes
[2023-08-17T20:24:33.198Z] # [BEFORE] [kiegroup/kogito-runtimes] export INTEGRATION_BRANCH=
[2023-08-17T20:24:33.198Z] [INFO] OK [Executed in 0.154279 ms]
[2023-08-17T20:24:33.198Z]
[2023-08-17T20:24:33.198Z] # [BEFORE] [kiegroup/kogito-runtimes] bash -c "if [ ! -z '' ] && [ -f .ci/environments/update.sh ]; then .ci/environments/update.sh ; fi"
[2023-08-17T20:24:33.198Z] [INFO] OK [Executed in 5.541521 ms]
[2023-08-17T20:24:33.198Z]
[2023-08-17T20:24:33.198Z] # [COMMANDS] [kiegroup/kogito-runtimes] export MVN_CMD=`bash -c "if [ '' = 'true' ]; then printf 'deploy '; else printf 'install'; fi"`
[2023-08-17T20:24:33.198Z] [INFO] OK [Executed in 4.813595 ms]
[2023-08-17T20:24:33.198Z]
[2023-08-17T20:24:33.198Z] # [COMMANDS] [kiegroup/kogito-runtimes] mvn dependency:tree clean -Dfull install -s /home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes@tmp/config11369415331975608143tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -T 1C -Dvalidate-formatting -Prun-code-coverage -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B
[2023-08-17T20:24:33.198Z] [INFO] NOT OK [Executed in 10509874.394501 ms]
[2023-08-17T20:24:33.198Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 143
[2023-08-17T20:24:33.198Z]
[2023-08-17T20:24:33.198Z] [INFO] [AFTER] No commands were found for kiegroup/kogito-runtimes
[2023-08-17T20:24:33.198Z]
[2023-08-17T20:24:33.198Z] # Uploading artifacts
[2023-08-17T20:24:33.198Z] [INFO] Will not upload any artifacts in CLI environment
[2023-08-17T20:24:33.198Z]
[2023-08-17T20:24:33.198Z] [ERROR] Failed to execute commands for kiegroup/kogito-runtimes
[2023-08-17T20:24:33.198Z] [ERROR] Failed to execute mvn dependency:tree clean -Dfull install -s /home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes@tmp/config11369415331975608143tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -T 1C -Dvalidate-formatting -Prun-code-coverage -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B :
[2023-08-17T20:24:33.198Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 143
[2023-08-17T20:24:33.458Z] script returned exit code 1
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] }
[2023-08-17T20:24:33.637Z] Deleting 1 temporary files
[Pipeline] // configFileProvider
[Pipeline] }
[Pipeline] // script
Post stage
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-17T20:24:34.117Z] + find . -type d -name node_modules -exec rm -rf '{}' ';'
[Pipeline] junit
[2023-08-17T20:24:38.285Z] Recording test results
[2023-08-17T20:24:42.928Z] [Checks API] No suitable checks publisher found.
[Pipeline] archiveArtifacts
[2023-08-17T20:24:42.948Z] Archiving artifacts
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-17T20:24:44.446Z] + rm -rf console.log
[Pipeline] sh
[2023-08-17T20:24:44.742Z] + wget --no-check-certificate -qO - https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/kogito/job/main/job/pullrequest/job/kogito-runtimes.tests.kogito-runtimes/3032/consoleText
[2023-08-17T20:24:44.742Z] + tail -n 300

@kie-ci3
Copy link
Contributor

kie-ci3 commented Aug 17, 2023

(tests) - kogito-runtimes job #3034 was: ABORTED
Possible explanation: Most probably a timeout, please review

Reproducer

export BUILD_MVN_OPTS_CURRENT=-T 1C -Dvalidate-formatting -Prun-code-coverage
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/kogito-pipelines/main/.ci/pull-request-config.yaml' -o 'bc' -p kiegroup/kogito-runtimes -u https://github.com/kiegroup/kogito-runtimes/pull/3179 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/kogito/job/main/job/pullrequest/job/kogito-runtimes.tests.kogito-runtimes/3034/display/redirect

Test results:

  • PASSED: 3356
  • FAILED: 0

Those are the test failures: none

See console log:

Console Logs [2023-08-17T22:22:42.727Z] [ERROR] Failed to execute goal org.apache.maven.plugins:maven-failsafe-plugin:3.1.2:verify (integration-test) on project kogito-addons-quarkus-microprofile-config-service-catalog-integration-tests:
[2023-08-17T22:22:42.727Z] [ERROR]
[2023-08-17T22:22:42.727Z] [ERROR] Please refer to /home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/failsafe-reports for the individual test results.
[2023-08-17T22:22:42.727Z] [ERROR] Please refer to dump files (if any exist) [date].dump, [date]-jvmRun[N].dump and [date].dumpstream.
[2023-08-17T22:22:42.727Z] [ERROR] The forked VM terminated without properly saying goodbye. VM crash or System.exit called?
[2023-08-17T22:22:42.728Z] [ERROR] Command was /bin/sh -c cd '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests' && '/usr/lib/jvm/java-11-openjdk-11.0.20.0.8-2.el8.x86_64/bin/java' '-Xms2048m' '-Xmx4g' '-XX:-TieredCompilation' '-XX:TieredStopAtLevel=1' '-Xverify:none' '-jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire/surefirebooter-20230817154129763_383.jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire' '2023-08-17T15-28-12_486-jvmRun4' 'surefire-20230817154129763_381tmp' 'surefire_34-20230817154129763_382tmp'
[2023-08-17T22:22:42.728Z] [ERROR] Error occurred in starting fork, check output in log
[2023-08-17T22:22:42.728Z] [ERROR] Process Exit Code: 143
[2023-08-17T22:22:42.728Z] [ERROR] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.fork(ForkStarter.java:643)
[2023-08-17T22:22:42.728Z] [ERROR] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:285)
[2023-08-17T22:22:42.728Z] [ERROR] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:250)
[2023-08-17T22:22:42.728Z] [ERROR] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeProvider(AbstractSurefireMojo.java:1203)
[2023-08-17T22:22:42.728Z] [ERROR] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeAfterPreconditionsChecked(AbstractSurefireMojo.java:1055)
[2023-08-17T22:22:42.728Z] [ERROR] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.execute(AbstractSurefireMojo.java:871)
[2023-08-17T22:22:42.728Z] [ERROR] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:137)
[2023-08-17T22:22:42.728Z] [ERROR] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2(MojoExecutor.java:370)
[2023-08-17T22:22:42.728Z] [ERROR] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute(MojoExecutor.java:351)
[2023-08-17T22:22:42.728Z] [ERROR] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:215)
[2023-08-17T22:22:42.728Z] [ERROR] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:171)
[2023-08-17T22:22:42.728Z] [ERROR] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:163)
[2023-08-17T22:22:42.728Z] [ERROR] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117)
[2023-08-17T22:22:42.728Z] [ERROR] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:210)
[2023-08-17T22:22:42.728Z] [ERROR] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:195)
[2023-08-17T22:22:42.728Z] [ERROR] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T22:22:42.728Z] [ERROR] at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
[2023-08-17T22:22:42.728Z] [ERROR] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T22:22:42.728Z] [ERROR] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
[2023-08-17T22:22:42.728Z] [ERROR] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
[2023-08-17T22:22:42.728Z] [ERROR] at java.base/java.lang.Thread.run(Thread.java:829)
[2023-08-17T22:22:42.728Z] [ERROR]
[2023-08-17T22:22:42.728Z] [ERROR] org.apache.maven.surefire.booter.SurefireBooterForkException: The forked VM terminated without properly saying goodbye. VM crash or System.exit called?
[2023-08-17T22:22:42.728Z] [ERROR] Command was /bin/sh -c cd '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests' && '/usr/lib/jvm/java-11-openjdk-11.0.20.0.8-2.el8.x86_64/bin/java' '-Xms2048m' '-Xmx4g' '-XX:-TieredCompilation' '-XX:TieredStopAtLevel=1' '-Xverify:none' '-jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire/surefirebooter-20230817154129763_383.jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire' '2023-08-17T15-28-12_486-jvmRun4' 'surefire-20230817154129763_381tmp' 'surefire_34-20230817154129763_382tmp'
[2023-08-17T22:22:42.728Z] [ERROR] Error occurred in starting fork, check output in log
[2023-08-17T22:22:42.728Z] [ERROR] Process Exit Code: 143
[2023-08-17T22:22:42.728Z] [ERROR] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.fork(ForkStarter.java:643)
[2023-08-17T22:22:42.728Z] [ERROR] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:285)
[2023-08-17T22:22:42.728Z] [ERROR] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:250)
[2023-08-17T22:22:42.728Z] [ERROR] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeProvider(AbstractSurefireMojo.java:1203)
[2023-08-17T22:22:42.728Z] [ERROR] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeAfterPreconditionsChecked(AbstractSurefireMojo.java:1055)
[2023-08-17T22:22:42.728Z] [ERROR] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.execute(AbstractSurefireMojo.java:871)
[2023-08-17T22:22:42.728Z] [ERROR] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:137)
[2023-08-17T22:22:42.728Z] [ERROR] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2(MojoExecutor.java:370)
[2023-08-17T22:22:42.728Z] [ERROR] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute(MojoExecutor.java:351)
[2023-08-17T22:22:42.728Z] [ERROR] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:215)
[2023-08-17T22:22:42.728Z] [ERROR] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:171)
[2023-08-17T22:22:42.728Z] [ERROR] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:163)
[2023-08-17T22:22:42.728Z] [ERROR] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117)
[2023-08-17T22:22:42.728Z] [ERROR] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:210)
[2023-08-17T22:22:42.728Z] [ERROR] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:195)
[2023-08-17T22:22:42.728Z] [ERROR] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T22:22:42.728Z] [ERROR] at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
[2023-08-17T22:22:42.728Z] [ERROR] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T22:22:42.728Z] [ERROR] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
[2023-08-17T22:22:42.728Z] [ERROR] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
[2023-08-17T22:22:42.728Z] [ERROR] at java.base/java.lang.Thread.run(Thread.java:829)
[2023-08-17T22:22:42.728Z] [ERROR] -> [Help 1]
[2023-08-17T22:22:42.728Z] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-failsafe-plugin:3.1.2:verify (integration-test) on project kogito-addons-quarkus-microprofile-config-service-catalog-integration-tests:
[2023-08-17T22:22:42.728Z]
[2023-08-17T22:22:42.728Z] Please refer to /home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/failsafe-reports for the individual test results.
[2023-08-17T22:22:42.728Z] Please refer to dump files (if any exist) [date].dump, [date]-jvmRun[N].dump and [date].dumpstream.
[2023-08-17T22:22:42.728Z] The forked VM terminated without properly saying goodbye. VM crash or System.exit called?
[2023-08-17T22:22:42.728Z] Command was /bin/sh -c cd '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests' && '/usr/lib/jvm/java-11-openjdk-11.0.20.0.8-2.el8.x86_64/bin/java' '-Xms2048m' '-Xmx4g' '-XX:-TieredCompilation' '-XX:TieredStopAtLevel=1' '-Xverify:none' '-jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire/surefirebooter-20230817154129763_383.jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire' '2023-08-17T15-28-12_486-jvmRun4' 'surefire-20230817154129763_381tmp' 'surefire_34-20230817154129763_382tmp'
[2023-08-17T22:22:42.728Z] Error occurred in starting fork, check output in log
[2023-08-17T22:22:42.728Z] Process Exit Code: 143
[2023-08-17T22:22:42.728Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.fork(ForkStarter.java:643)
[2023-08-17T22:22:42.728Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:285)
[2023-08-17T22:22:42.728Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:250)
[2023-08-17T22:22:42.728Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeProvider(AbstractSurefireMojo.java:1203)
[2023-08-17T22:22:42.728Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeAfterPreconditionsChecked(AbstractSurefireMojo.java:1055)
[2023-08-17T22:22:42.728Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.execute(AbstractSurefireMojo.java:871)
[2023-08-17T22:22:42.728Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:137)
[2023-08-17T22:22:42.728Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2(MojoExecutor.java:370)
[2023-08-17T22:22:42.728Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute(MojoExecutor.java:351)
[2023-08-17T22:22:42.728Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:215)
[2023-08-17T22:22:42.728Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:171)
[2023-08-17T22:22:42.728Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:163)
[2023-08-17T22:22:42.728Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117)
[2023-08-17T22:22:42.728Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:210)
[2023-08-17T22:22:42.728Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:195)
[2023-08-17T22:22:42.728Z] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T22:22:42.728Z] at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
[2023-08-17T22:22:42.728Z] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T22:22:42.728Z] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
[2023-08-17T22:22:42.728Z] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
[2023-08-17T22:22:42.728Z] at java.base/java.lang.Thread.run(Thread.java:829)
[2023-08-17T22:22:42.728Z]
[2023-08-17T22:22:42.728Z] org.apache.maven.surefire.booter.SurefireBooterForkException: The forked VM terminated without properly saying goodbye. VM crash or System.exit called?
[2023-08-17T22:22:42.728Z] Command was /bin/sh -c cd '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests' && '/usr/lib/jvm/java-11-openjdk-11.0.20.0.8-2.el8.x86_64/bin/java' '-Xms2048m' '-Xmx4g' '-XX:-TieredCompilation' '-XX:TieredStopAtLevel=1' '-Xverify:none' '-jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire/surefirebooter-20230817154129763_383.jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire' '2023-08-17T15-28-12_486-jvmRun4' 'surefire-20230817154129763_381tmp' 'surefire_34-20230817154129763_382tmp'
[2023-08-17T22:22:42.728Z] Error occurred in starting fork, check output in log
[2023-08-17T22:22:42.728Z] Process Exit Code: 143
[2023-08-17T22:22:42.728Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.fork(ForkStarter.java:643)
[2023-08-17T22:22:42.728Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:285)
[2023-08-17T22:22:42.728Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:250)
[2023-08-17T22:22:42.729Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeProvider(AbstractSurefireMojo.java:1203)
[2023-08-17T22:22:42.729Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeAfterPreconditionsChecked(AbstractSurefireMojo.java:1055)
[2023-08-17T22:22:42.729Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.execute(AbstractSurefireMojo.java:871)
[2023-08-17T22:22:42.729Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:137)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2(MojoExecutor.java:370)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute(MojoExecutor.java:351)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:215)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:171)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:163)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:210)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:195)
[2023-08-17T22:22:42.729Z] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T22:22:42.729Z] at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
[2023-08-17T22:22:42.729Z] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T22:22:42.729Z] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
[2023-08-17T22:22:42.729Z] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
[2023-08-17T22:22:42.729Z] at java.base/java.lang.Thread.run(Thread.java:829)
[2023-08-17T22:22:42.729Z]
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:375)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call (MultiThreadedBuilder.java:210)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call (MultiThreadedBuilder.java:195)
[2023-08-17T22:22:42.729Z] at java.util.concurrent.FutureTask.run (FutureTask.java:264)
[2023-08-17T22:22:42.729Z] at java.util.concurrent.Executors$RunnableAdapter.call (Executors.java:515)
[2023-08-17T22:22:42.729Z] at java.util.concurrent.FutureTask.run (FutureTask.java:264)
[2023-08-17T22:22:42.729Z] at java.util.concurrent.ThreadPoolExecutor.runWorker (ThreadPoolExecutor.java:1128)
[2023-08-17T22:22:42.729Z] at java.util.concurrent.ThreadPoolExecutor$Worker.run (ThreadPoolExecutor.java:628)
[2023-08-17T22:22:42.729Z] at java.lang.Thread.run (Thread.java:829)
[2023-08-17T22:22:42.729Z] Caused by: org.apache.maven.plugin.MojoExecutionException:
[2023-08-17T22:22:42.729Z]
[2023-08-17T22:22:42.729Z] Please refer to /home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/failsafe-reports for the individual test results.
[2023-08-17T22:22:42.729Z] Please refer to dump files (if any exist) [date].dump, [date]-jvmRun[N].dump and [date].dumpstream.
[2023-08-17T22:22:42.729Z] The forked VM terminated without properly saying goodbye. VM crash or System.exit called?
[2023-08-17T22:22:42.729Z] Command was /bin/sh -c cd '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests' && '/usr/lib/jvm/java-11-openjdk-11.0.20.0.8-2.el8.x86_64/bin/java' '-Xms2048m' '-Xmx4g' '-XX:-TieredCompilation' '-XX:TieredStopAtLevel=1' '-Xverify:none' '-jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire/surefirebooter-20230817154129763_383.jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire' '2023-08-17T15-28-12_486-jvmRun4' 'surefire-20230817154129763_381tmp' 'surefire_34-20230817154129763_382tmp'
[2023-08-17T22:22:42.729Z] Error occurred in starting fork, check output in log
[2023-08-17T22:22:42.729Z] Process Exit Code: 143
[2023-08-17T22:22:42.729Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.fork(ForkStarter.java:643)
[2023-08-17T22:22:42.729Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:285)
[2023-08-17T22:22:42.729Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:250)
[2023-08-17T22:22:42.729Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeProvider(AbstractSurefireMojo.java:1203)
[2023-08-17T22:22:42.729Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeAfterPreconditionsChecked(AbstractSurefireMojo.java:1055)
[2023-08-17T22:22:42.729Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.execute(AbstractSurefireMojo.java:871)
[2023-08-17T22:22:42.729Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:137)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2(MojoExecutor.java:370)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute(MojoExecutor.java:351)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:215)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:171)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:163)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:210)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:195)
[2023-08-17T22:22:42.729Z] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T22:22:42.729Z] at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
[2023-08-17T22:22:42.729Z] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T22:22:42.729Z] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
[2023-08-17T22:22:42.729Z] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
[2023-08-17T22:22:42.729Z] at java.base/java.lang.Thread.run(Thread.java:829)
[2023-08-17T22:22:42.729Z]
[2023-08-17T22:22:42.729Z] org.apache.maven.surefire.booter.SurefireBooterForkException: The forked VM terminated without properly saying goodbye. VM crash or System.exit called?
[2023-08-17T22:22:42.729Z] Command was /bin/sh -c cd '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests' && '/usr/lib/jvm/java-11-openjdk-11.0.20.0.8-2.el8.x86_64/bin/java' '-Xms2048m' '-Xmx4g' '-XX:-TieredCompilation' '-XX:TieredStopAtLevel=1' '-Xverify:none' '-jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire/surefirebooter-20230817154129763_383.jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire' '2023-08-17T15-28-12_486-jvmRun4' 'surefire-20230817154129763_381tmp' 'surefire_34-20230817154129763_382tmp'
[2023-08-17T22:22:42.729Z] Error occurred in starting fork, check output in log
[2023-08-17T22:22:42.729Z] Process Exit Code: 143
[2023-08-17T22:22:42.729Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.fork(ForkStarter.java:643)
[2023-08-17T22:22:42.729Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:285)
[2023-08-17T22:22:42.729Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:250)
[2023-08-17T22:22:42.729Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeProvider(AbstractSurefireMojo.java:1203)
[2023-08-17T22:22:42.729Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeAfterPreconditionsChecked(AbstractSurefireMojo.java:1055)
[2023-08-17T22:22:42.729Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.execute(AbstractSurefireMojo.java:871)
[2023-08-17T22:22:42.729Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:137)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2(MojoExecutor.java:370)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute(MojoExecutor.java:351)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:215)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:171)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:163)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:210)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:195)
[2023-08-17T22:22:42.729Z] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T22:22:42.729Z] at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
[2023-08-17T22:22:42.729Z] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T22:22:42.729Z] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
[2023-08-17T22:22:42.729Z] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
[2023-08-17T22:22:42.729Z] at java.base/java.lang.Thread.run(Thread.java:829)
[2023-08-17T22:22:42.729Z]
[2023-08-17T22:22:42.729Z] at org.apache.maven.plugin.surefire.SurefireHelper.reportExecution (SurefireHelper.java:154)
[2023-08-17T22:22:42.729Z] at org.apache.maven.plugin.failsafe.VerifyMojo.execute (VerifyMojo.java:190)
[2023-08-17T22:22:42.729Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call (MultiThreadedBuilder.java:210)
[2023-08-17T22:22:42.729Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call (MultiThreadedBuilder.java:195)
[2023-08-17T22:22:42.729Z] at java.util.concurrent.FutureTask.run (FutureTask.java:264)
[2023-08-17T22:22:42.729Z] at java.util.concurrent.Executors$RunnableAdapter.call (Executors.java:515)
[2023-08-17T22:22:42.729Z] at java.util.concurrent.FutureTask.run (FutureTask.java:264)
[2023-08-17T22:22:42.730Z] at java.util.concurrent.ThreadPoolExecutor.runWorker (ThreadPoolExecutor.java:1128)
[2023-08-17T22:22:42.730Z] at java.util.concurrent.ThreadPoolExecutor$Worker.run (ThreadPoolExecutor.java:628)
[2023-08-17T22:22:42.730Z] at java.lang.Thread.run (Thread.java:829)
[2023-08-17T22:22:42.730Z] Caused by: org.apache.maven.surefire.booter.SurefireBooterForkException: The forked VM terminated without properly saying goodbye. VM crash or System.exit called?
[2023-08-17T22:22:42.730Z] Command was /bin/sh -c cd '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests' && '/usr/lib/jvm/java-11-openjdk-11.0.20.0.8-2.el8.x86_64/bin/java' '-Xms2048m' '-Xmx4g' '-XX:-TieredCompilation' '-XX:TieredStopAtLevel=1' '-Xverify:none' '-jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire/surefirebooter-20230817154129763_383.jar' '/home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/microprofile-config-service-catalog/integration-tests/target/surefire' '2023-08-17T15-28-12_486-jvmRun4' 'surefire-20230817154129763_381tmp' 'surefire_34-20230817154129763_382tmp'
[2023-08-17T22:22:42.730Z] Error occurred in starting fork, check output in log
[2023-08-17T22:22:42.730Z] Process Exit Code: 143
[2023-08-17T22:22:42.730Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.fork(ForkStarter.java:643)
[2023-08-17T22:22:42.730Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:285)
[2023-08-17T22:22:42.730Z] at org.apache.maven.plugin.surefire.booterclient.ForkStarter.run(ForkStarter.java:250)
[2023-08-17T22:22:42.730Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeProvider(AbstractSurefireMojo.java:1203)
[2023-08-17T22:22:42.730Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeAfterPreconditionsChecked(AbstractSurefireMojo.java:1055)
[2023-08-17T22:22:42.730Z] at org.apache.maven.plugin.surefire.AbstractSurefireMojo.execute(AbstractSurefireMojo.java:871)
[2023-08-17T22:22:42.730Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:137)
[2023-08-17T22:22:42.730Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2(MojoExecutor.java:370)
[2023-08-17T22:22:42.730Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute(MojoExecutor.java:351)
[2023-08-17T22:22:42.730Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:215)
[2023-08-17T22:22:42.730Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:171)
[2023-08-17T22:22:42.730Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:163)
[2023-08-17T22:22:42.730Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:117)
[2023-08-17T22:22:42.730Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:210)
[2023-08-17T22:22:42.730Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call(MultiThreadedBuilder.java:195)
[2023-08-17T22:22:42.730Z] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T22:22:42.730Z] at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
[2023-08-17T22:22:42.730Z] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
[2023-08-17T22:22:42.730Z] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
[2023-08-17T22:22:42.730Z] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
[2023-08-17T22:22:42.730Z] at java.base/java.lang.Thread.run(Thread.java:829)
[2023-08-17T22:22:42.730Z]
[2023-08-17T22:22:42.730Z] at org.apache.maven.plugin.failsafe.VerifyMojo.getBooterForkException (VerifyMojo.java:198)
[2023-08-17T22:22:42.730Z] at org.apache.maven.plugin.failsafe.VerifyMojo.execute (VerifyMojo.java:190)
[2023-08-17T22:22:42.730Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2023-08-17T22:22:42.730Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2023-08-17T22:22:42.730Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2023-08-17T22:22:42.730Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2023-08-17T22:22:42.730Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2023-08-17T22:22:42.730Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2023-08-17T22:22:42.730Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2023-08-17T22:22:42.730Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call (MultiThreadedBuilder.java:210)
[2023-08-17T22:22:42.730Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call (MultiThreadedBuilder.java:195)
[2023-08-17T22:22:42.730Z] at java.util.concurrent.FutureTask.run (FutureTask.java:264)
[2023-08-17T22:22:42.730Z] at java.util.concurrent.Executors$RunnableAdapter.call (Executors.java:515)
[2023-08-17T22:22:42.730Z] at java.util.concurrent.FutureTask.run (FutureTask.java:264)
[2023-08-17T22:22:42.730Z] at java.util.concurrent.ThreadPoolExecutor.runWorker (ThreadPoolExecutor.java:1128)
[2023-08-17T22:22:42.730Z] at java.util.concurrent.ThreadPoolExecutor$Worker.run (ThreadPoolExecutor.java:628)
[2023-08-17T22:22:42.730Z] at java.lang.Thread.run (Thread.java:829)
[2023-08-17T22:22:42.730Z] [ERROR]
[2023-08-17T22:22:42.730Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2023-08-17T22:22:42.730Z] [ERROR]
[2023-08-17T22:22:42.730Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2023-08-17T22:22:42.730Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[2023-08-17T22:22:42.730Z] [ERROR]
[2023-08-17T22:22:42.730Z] [ERROR] After correcting the problems, you can resume the build with the command
[2023-08-17T22:22:42.730Z] [ERROR] mvn -rf :kogito-addons-quarkus-microprofile-config-service-catalog-integration-tests
[2023-08-17T22:22:42.730Z] [INFO] kiegroup/kogito-runtimes failed. Won't execute remaining commands and projects
[2023-08-17T22:22:42.730Z] [INFO] Execution summary for kiegroup/kogito-runtimes
[2023-08-17T22:22:42.730Z] # [BEFORE] [kiegroup/kogito-runtimes] export INTEGRATION_BRANCH=
[2023-08-17T22:22:42.730Z] [INFO] OK [Executed in 0.17045 ms]
[2023-08-17T22:22:42.730Z]
[2023-08-17T22:22:42.730Z] # [BEFORE] [kiegroup/kogito-runtimes] bash -c "if [ ! -z '' ] && [ -f .ci/environments/update.sh ]; then .ci/environments/update.sh ; fi"
[2023-08-17T22:22:42.730Z] [INFO] OK [Executed in 7.033159 ms]
[2023-08-17T22:22:42.730Z]
[2023-08-17T22:22:42.730Z] # [COMMANDS] [kiegroup/kogito-runtimes] export MVN_CMD=`bash -c "if [ '' = 'true' ]; then printf 'deploy '; else printf 'install'; fi"`
[2023-08-17T22:22:42.730Z] [INFO] OK [Executed in 6.895191 ms]
[2023-08-17T22:22:42.730Z]
[2023-08-17T22:22:42.730Z] # [COMMANDS] [kiegroup/kogito-runtimes] mvn dependency:tree clean -Dfull install -s /home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes@tmp/config269414667400062756tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -T 1C -Dvalidate-formatting -Prun-code-coverage -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B
[2023-08-17T22:22:42.730Z] [INFO] NOT OK [Executed in 10487094.659419 ms]
[2023-08-17T22:22:42.730Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 143
[2023-08-17T22:22:42.730Z]
[2023-08-17T22:22:42.730Z] [INFO] [AFTER] No commands were found for kiegroup/kogito-runtimes
[2023-08-17T22:22:42.730Z]
[2023-08-17T22:22:42.730Z] # Uploading artifacts
[2023-08-17T22:22:42.730Z] [INFO] Will not upload any artifacts in CLI environment
[2023-08-17T22:22:42.730Z]
[2023-08-17T22:22:42.730Z] [ERROR] Failed to execute commands for kiegroup/kogito-runtimes
[2023-08-17T22:22:42.730Z] [ERROR] Failed to execute mvn dependency:tree clean -Dfull install -s /home/jenkins/workspace/KIE/kogito/main/pullrequest/kogito-runtimes.tests.kogito-runtimes@tmp/config269414667400062756tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -T 1C -Dvalidate-formatting -Prun-code-coverage -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B :
[2023-08-17T22:22:42.730Z] [ERROR] The process '/opt/tools/apache-maven-3.8.7/bin/mvn' failed with exit code 143
[2023-08-17T22:22:42.735Z] script returned exit code 1
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] }
[2023-08-17T22:22:42.813Z] Deleting 1 temporary files
[Pipeline] // configFileProvider
[Pipeline] }
[Pipeline] // script
Post stage
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-17T22:22:43.223Z] + find . -type d -name node_modules -exec rm -rf '{}' ';'
[Pipeline] junit
[2023-08-17T22:22:48.473Z] Recording test results
[2023-08-17T22:22:53.438Z] [Checks API] No suitable checks publisher found.
[Pipeline] archiveArtifacts
[2023-08-17T22:22:53.495Z] Archiving artifacts
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-08-17T22:22:55.119Z] + rm -rf console.log
[Pipeline] sh
[2023-08-17T22:22:55.407Z] + wget --no-check-certificate -qO - https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/kogito/job/main/job/pullrequest/job/kogito-runtimes.tests.kogito-runtimes/3034/consoleText
[2023-08-17T22:22:55.407Z] + tail -n 300

@hbelmiro
Copy link
Contributor Author

jenkins rerun kogito-runtimes tests

@kie-ci3
Copy link
Contributor

kie-ci3 commented Aug 18, 2023

(tests) - kogito-runtimes job #3036 was: UNSTABLE
Possible explanation: This should be test failures

Reproducer

export BUILD_MVN_OPTS_CURRENT=-T 1C -Dvalidate-formatting -Prun-code-coverage
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/kogito-pipelines/main/.ci/pull-request-config.yaml' -o 'bc' -p kiegroup/kogito-runtimes -u https://github.com/kiegroup/kogito-runtimes/pull/3179 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/kogito/job/main/job/pullrequest/job/kogito-runtimes.tests.kogito-runtimes/3036/display/redirect

Test results:

  • PASSED: 3356
  • FAILED: 1

Those are the test failures:

org.kie.kogito.addons.quarkus.microprofile.config.service.catalog.it.MicroProfileConfigServiceAddonIT.executeWithEmptyParameters java.lang.RuntimeException: io.quarkus.builder.BuildException: Build failure: Build failed due to errors
[error]: Build step io.quarkus.kubernetes.client.deployment.DevServicesKubernetesProcessor#setupKubernetesDevService threw an exception: java.lang.RuntimeException: org.testcontainers.containers.ContainerLaunchException: Container startup failed
at io.quarkus.kubernetes.client.deployment.DevServicesKubernetesProcessor.setupKubernetesDevService(DevServicesKubernetesProcessor.java:119)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:566)
at io.quarkus.deployment.ExtensionLoader$3.execute(ExtensionLoader.java:909)
at io.quarkus.builder.BuildContext.run(BuildContext.java:281)
at org.jboss.threads.ContextHandler$1.runWith(ContextHandler.java:18)
at org.jboss.threads.EnhancedQueueExecutor$Task.run(EnhancedQueueExecutor.java:2449)
at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1478)
at java.base/java.lang.Thread.run(Thread.java:829)
at org.jboss.threads.JBossThread.run(JBossThread.java:501)
Caused by: org.testcontainers.containers.ContainerLaunchException: Container startup failed
at org.testcontainers.containers.GenericContainer.doStart(GenericContainer.java:349)
at org.testcontainers.containers.GenericContainer.start(GenericContainer.java:322)
at io.quarkus.kubernetes.client.deployment.DevServicesKubernetesProcessor.lambda$startKubernetes$7(DevServicesKubernetesProcessor.java:227)
at java.base/java.util.Optional.orElseGet(Optional.java:369)
at io.quarkus.kubernetes.client.deployment.DevServicesKubernetesProcessor.startKubernetes(DevServicesKubernetesProcessor.java:241)
at io.quarkus.kubernetes.client.deployment.DevServicesKubernetesProcessor.setupKubernetesDevService(DevServicesKubernetesProcessor.java:109)
... 11 more
Caused by: org.rnorth.ducttape.RetryCountExceededException: Retry limit hit with exception
at org.rnorth.ducttape.unreliables.Unreliables.retryUntilSuccess(Unreliables.java:88)
at org.testcontainers.containers.GenericContainer.doStart(GenericContainer.java:334)
... 16 more
Caused by: org.testcontainers.containers.ContainerLaunchException: Could not create/start container
at org.testcontainers.containers.GenericContainer.tryStart(GenericContainer.java:542)
at org.testcontainers.containers.GenericContainer.lambda$doStart$0(GenericContainer.java:344)
at org.rnorth.ducttape.unreliables.Unreliables.retryUntilSuccess(Unreliables.java:81)
... 17 more
Caused by: org.testcontainers.containers.ContainerLaunchException: Container startup failed
at org.testcontainers.containers.GenericContainer.doStart(GenericContainer.java:349)
at org.testcontainers.containers.GenericContainer.start(GenericContainer.java:322)
at com.dajudge.kindcontainer.ApiServerContainer.containerIsStarting(ApiServerContainer.java:142)
at org.testcontainers.containers.GenericContainer.containerIsStarting(GenericContainer.java:692)
at com.dajudge.kindcontainer.KubernetesContainer.containerIsStarting(KubernetesContainer.java:151)
at org.testcontainers.containers.GenericContainer.tryStart(GenericContainer.java:474)
... 19 more
Caused by: org.rnorth.ducttape.RetryCountExceededException: Retry limit hit with exception
at org.rnorth.ducttape.unreliables.Unreliables.retryUntilSuccess(Unreliables.java:88)
at org.testcontainers.containers.GenericContainer.doStart(GenericContainer.java:334)
... 24 more
Caused by: org.testcontainers.containers.ContainerLaunchException: Could not create/start container
at org.testcontainers.containers.GenericContainer.tryStart(GenericContainer.java:542)
at org.testcontainers.containers.GenericContainer.lambda$doStart$0(GenericContainer.java:344)
at org.rnorth.ducttape.unreliables.Unreliables.retryUntilSuccess(Unreliables.java:81)
... 25 more
Caused by: com.github.dockerjava.api.exception.ConflictException: Status 409: {"message":"cannot join network of a non running container: 8a347daa4f468501b5e7e199011ba9fb4e45bcba8a7f07efb42215e74526b09f"}

at org.testcontainers.shaded.com.github.dockerjava.core.DefaultInvocationBuilder.execute(DefaultInvocationBuilder.java:245)
at org.testcontainers.shaded.com.github.dockerjava.core.DefaultInvocationBuilder.post(DefaultInvocationBuilder.java:102)
at org.testcontainers.shaded.com.github.dockerjava.core.exec.StartContainerCmdExec.execute(StartContainerCmdExec.java:31)
at org.testcontainers.shaded.com.github.dockerjava.core.exec.StartContainerCmdExec.execute(StartContainerCmdExec.java:13)
at org.testcontainers.shaded.com.github.dockerjava.core.exec.AbstrSyncDockerCmdExec.exec(AbstrSyncDockerCmdExec.java:21)
at org.testcontainers.shaded.com.github.dockerjava.core.command.AbstrDockerCmd.exec(AbstrDockerCmd.java:35)
at org.testcontainers.shaded.com.github.dockerjava.core.command.StartContainerCmdImpl.exec(StartContainerCmdImpl.java:43)
at org.testcontainers.containers.GenericContainer.tryStart(GenericContainer.java:441)
... 27 more

Signed-off-by: Helber Belmiro <helber.belmiro@gmail.com>
@kie-ci3
Copy link
Contributor

kie-ci3 commented Aug 18, 2023

(tests) - kogito-runtimes job #3037 was: UNSTABLE
Possible explanation: This should be test failures

Reproducer

export BUILD_MVN_OPTS_CURRENT=-T 1C -Dvalidate-formatting -Prun-code-coverage
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/kogito-pipelines/main/.ci/pull-request-config.yaml' -o 'bc' -p kiegroup/kogito-runtimes -u https://github.com/kiegroup/kogito-runtimes/pull/3179 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/kogito/job/main/job/pullrequest/job/kogito-runtimes.tests.kogito-runtimes/3037/display/redirect

Test results:

  • PASSED: 3356
  • FAILED: 1

Those are the test failures:

org.kie.kogito.persistence.kafka.KafkaProcessInstancesIT.testFindByIdReadMode
expected: 5
but was: 0

@hbelmiro
Copy link
Contributor Author

Jenkins rerun kogito-runtimes tests

@kie-ci3
Copy link
Contributor

kie-ci3 commented Aug 18, 2023

(tests) - kogito-runtimes job #3038 was: UNSTABLE
Possible explanation: This should be test failures

Reproducer

export BUILD_MVN_OPTS_CURRENT=-T 1C -Dvalidate-formatting -Prun-code-coverage
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/kogito-pipelines/main/.ci/pull-request-config.yaml' -o 'bc' -p kiegroup/kogito-runtimes -u https://github.com/kiegroup/kogito-runtimes/pull/3179 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/kogito/job/main/job/pullrequest/job/kogito-runtimes.tests.kogito-runtimes/3038/display/redirect

Test results:

  • PASSED: 3356
  • FAILED: 1

Those are the test failures:

org.jbpm.process.TimerTest.testTimer
expected: 4
but was: 5

@hbelmiro
Copy link
Contributor Author

Jenkins rerun kogito-runtimes tests

@kie-ci3
Copy link
Contributor

kie-ci3 commented Aug 18, 2023

(tests) - kogito-runtimes job #3039 was: UNSTABLE
Possible explanation: This should be test failures

Reproducer

export BUILD_MVN_OPTS_CURRENT=-T 1C -Dvalidate-formatting -Prun-code-coverage
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/kogito-pipelines/main/.ci/pull-request-config.yaml' -o 'bc' -p kiegroup/kogito-runtimes -u https://github.com/kiegroup/kogito-runtimes/pull/3179 --skipParallelCheckout

NOTE: To install the build-chain tool, please refer to https://github.com/kiegroup/github-action-build-chain#local-execution

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/kogito/job/main/job/pullrequest/job/kogito-runtimes.tests.kogito-runtimes/3039/display/redirect

Test results:

  • PASSED: 3355
  • FAILED: 2

Those are the test failures:

org.kie.kogito.persistence.kafka.KafkaProcessInstancesIT.testFindByIdReadMode
expected: 5
but was: 0
org.kie.kogito.it.KafkaPersistenceIT.testMultipleEmbeddedInstance 1 expectation failed.
Expected status code <404> but was <200>.

@hbelmiro
Copy link
Contributor Author

Jenkins rerun kogito-runtimes tests

@sonarcloud
Copy link

sonarcloud bot commented Aug 18, 2023

SonarCloud Quality Gate failed.    Quality Gate failed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

60.0% 60.0% Coverage
0.0% 0.0% Duplication

idea Catch issues before they fail your Quality Gate with our IDE extension sonarlint SonarLint

@hbelmiro
Copy link
Contributor Author

All green @ricardozanini.

@ricardozanini ricardozanini merged commit 1e1fe69 into apache:main Aug 22, 2023
11 of 12 checks passed
@hbelmiro hbelmiro deleted the KOGITO-9145-to-kiegroup branch August 22, 2023 12:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants