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

Quarkus 3: Fix patches #3141

Merged
merged 4 commits into from
Jul 31, 2023
Merged

Quarkus 3: Fix patches #3141

merged 4 commits into from
Jul 31, 2023

Conversation

radtriste
Copy link
Contributor

Many thanks for submitting your Pull Request ❤️!

Please make sure that your PR meets the following requirements:

  • 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.

@radtriste
Copy link
Contributor Author

jenkins run quarkus-3

@kie-ci3
Copy link
Contributor

kie-ci3 commented Jul 27, 2023

(quarkus-3) - kogito-runtimes job #47 was: FAILURE
Possible explanation: Pipeline failure or project build failure

Reproducer

export BUILD_MVN_OPTS_CURRENT=-T 1C
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/3141 --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.quarkus-3/job/kogito-runtimes.quarkus-3.kogito-runtimes/47/display/redirect

Test results:

  • PASSED: 3338
  • FAILED: 7

Those are the test failures:

org.kie.kogito.integrationtests.springboot.OASTest.testOASisValid
Expecting empty but was: ["Unable to read location `http://localhost:35509/v3/api-docs`"]
org.kie.kogito.integrationtests.springboot.OASTest.testOASisSwaggerUICompatible
Expecting empty but was: ["Unable to read location `http://localhost:35509/v3/api-docs`"]
org.kie.kogito.integrationtests.springboot.PMMLRegressionTest.testEvaluateLinRegResult 1 expectation failed.
Expected status code <200> but was <404>.
org.kie.kogito.integrationtests.springboot.PMMLTreeTest.testEvaluateSampleMineResult 1 expectation failed.
Expected status code <200> but was <404>.
org.kie.kogito.integrationtests.springboot.PingPongMessageTest.testPingPongBetweenProcessInstances Assertion condition defined as a org.kie.kogito.integrationtests.springboot.PingPongMessageTest 1 expectation failed.
Expected status code <200> but was <404>.
within 10 seconds.
org.kie.kogito.integrationtests.springboot.ProcessSvgAddonTest.testGetSvgProcessInstances javax/servlet/DispatcherType
org.kie.kogito.integrationtests.springboot.ProcessSvgAddonTest.testInvalidSvgProcessInstances Could not initialize class com.github.tomakehurst.wiremock.jetty9.JettyHttpServerFactory

See console log:

Console Logs [2023-07-27T07:11:43.668Z] [INFO] Kogito Add-On Knative - Parent ..................... SUCCESS [ 0.026 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito Add-On Knative Eventing - Parent ............ SUCCESS [ 0.026 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito Add-On Knative Eventing ..................... SUCCESS [ 6.529 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito Add-On Knative Eventing - Deployment ........ SUCCESS [ 8.314 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito Add-On Knative Eventing - Integration Tests . SUCCESS [01:05 min]
[2023-07-27T07:11:43.668Z] [INFO] Kogito :: Add-Ons :: Kubernetes Service Catalog .... SUCCESS [ 4.235 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito :: Add-Ons :: Kubernetes .................... SUCCESS [ 8.036 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito Add-On Fabric8 Kubernetes Service Catalog - Parent SUCCESS [ 0.058 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito Add-On Fabric8 Kubernetes Service Catalog Tests Utils SUCCESS [ 2.315 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito Add-On Fabric8 Kubernetes Service Catalog ... SUCCESS [01:33 min]
[2023-07-27T07:11:43.668Z] [INFO] Kogito Add-On Kubernetes - Parent .................. SUCCESS [ 0.024 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito Add-On Kubernetes ........................... SUCCESS [ 38.880 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito Add-On Kubernetes - Deployment .............. SUCCESS [ 23.104 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito Add-On Knative Serving - Parent ............. SUCCESS [ 0.026 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito Add-On Knative Serving ...................... SUCCESS [ 34.432 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito Add-On Knative Serving - Deployment ......... SUCCESS [ 0.822 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito :: Add-Ons :: Events :: Parent .............. SUCCESS [ 0.029 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito :: Add-Ons :: Events :: Event-Driven Decisions SUCCESS [ 7.979 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito Add-On Events Decisions - Parent ............ SUCCESS [ 0.038 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito Add-On Events Decisions ..................... SUCCESS [ 1.104 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito Add-On Events Decisions - Deployment ........ SUCCESS [ 0.787 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito :: Add-Ons :: Events :: Event-Driven Predictions SUCCESS [ 6.177 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito Add-On Events Predictions - Parent .......... SUCCESS [ 0.047 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito Add-On Events Predictions ................... SUCCESS [ 0.832 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito Add-On Events Predictions - Deployment ...... SUCCESS [ 0.512 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito :: Add-Ons :: Events :: Event-Driven Rules .. SUCCESS [ 4.955 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito Add-On Events Rules - Parent ................ SUCCESS [ 0.026 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito :: Add-Ons :: Events :: Event-Driven Rules :: Quarkus SUCCESS [ 0.430 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito Add-On Events Rules - Deployment ............ SUCCESS [ 0.498 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito :: Add-Ons :: Events :: MongoDB ............. SUCCESS [ 9.370 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito Add-On Events MongoDB - Parent .............. SUCCESS [ 0.055 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito Add-On Events MongoDB ....................... SUCCESS [01:32 min]
[2023-07-27T07:11:43.668Z] [INFO] Kogito Add-On Events MongoDB - Deployment .......... SUCCESS [ 3.168 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito :: Add-Ons :: Quarkus :: Camel :: Parent .... SUCCESS [ 0.022 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito :: Add-Ons :: Quarkus :: Camel :: Runtimes .. SUCCESS [ 3.568 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito :: Add-Ons :: Quarkus :: Camel :: Deployment SUCCESS [ 21.713 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito :: Add-Ons :: Quarkus :: Camel :: Integration Tests SUCCESS [ 49.250 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito Add-On Fabric8 Kubernetes Service Catalog - Deployment SUCCESS [ 0.198 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito :: Add-Ons :: Jobs .......................... SUCCESS [ 0.029 s]
[2023-07-27T07:11:43.668Z] [INFO] Kogito :: Add-Ons :: Jobs :: API ................... SUCCESS [ 4.129 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-Ons Quarkus Jobs Parent ................. SUCCESS [ 0.022 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-Ons Quarkus Jobs Common - Parent ........ SUCCESS [ 0.023 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-Ons Quarkus Jobs Common - Messaging ..... SUCCESS [ 2.399 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-Ons Quarkus - Rest Callback ............. SUCCESS [ 8.445 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Add-Ons :: Jobs :: Management Common ..... SUCCESS [ 1.823 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-Ons Quarkus Jobs Management - Parent .... SUCCESS [ 0.059 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-Ons Quarkus Jobs - Management ........... SUCCESS [ 9.323 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-Ons Quarkus Jobs Management - Deployment SUCCESS [ 2.610 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-Ons Quarkus Jobs Messaging - Parent ..... SUCCESS [ 0.088 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-Ons Quarkus Jobs - Messaging ............ SUCCESS [ 10.003 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-Ons Quarkus Jobs Messaging - Deployment . SUCCESS [ 2.734 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-Ons Quarkus Jobs Knative Eventing - Parent SUCCESS [ 0.048 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-Ons Quarkus Jobs - Knative Eventing ..... SUCCESS [ 11.027 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-Ons Quarkus Jobs Knative Eventing - Deployment SUCCESS [ 10.585 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Add-Ons :: Explainability ................ SUCCESS [ 8.000 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-On Explainability - Parent .............. SUCCESS [ 0.023 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-On Explainability ....................... SUCCESS [ 6.359 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-On Explainability - Deployment .......... SUCCESS [ 1.238 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-On Explainability - Integration tests ... SUCCESS [ 30.769 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Add-Ons :: E-Mail :: Common .............. SUCCESS [ 2.070 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-On Mail - Parent ........................ SUCCESS [ 0.022 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-On Mail ................................. SUCCESS [ 23.109 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-On Mail - Deployment .................... SUCCESS [ 0.899 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Add-Ons :: Monitoring .................... SUCCESS [ 0.026 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Add-Ons :: Monitoring Core ............... SUCCESS [ 7.968 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-On Monitoring - Parent .................. SUCCESS [ 0.023 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-On Monitoring Core ...................... SUCCESS [ 6.805 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Add-Ons :: Monitoring Prometheus Common .. SUCCESS [ 0.405 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-On Monitoring Prometheus - Parent ....... SUCCESS [ 0.060 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-On Monitoring Prometheus ................ SUCCESS [ 3.403 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-On Monitoring Prometheus - Deployment ... SUCCESS [ 1.750 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Add-Ons :: Monitoring Elastic Common ..... SUCCESS [ 3.571 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-On Monitoring Elastic - Parent .......... SUCCESS [ 0.023 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-On Monitoring Elastic ................... SUCCESS [ 1.437 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-On Monitoring Elastic - Deployment ...... SUCCESS [ 0.903 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Add-Ons :: Process SVG :: Common ......... SUCCESS [ 3.578 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-On Process SVG - Parent ................. SUCCESS [ 0.021 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-On Process SVG .......................... SUCCESS [ 7.927 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-On Process SVG - Deployment ............. SUCCESS [ 0.575 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-On Task Notification - Parent ........... SUCCESS [ 0.023 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-On Task Notification .................... SUCCESS [ 3.175 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-On Task Notification - Deployment ....... SUCCESS [ 0.778 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Add-Ons :: Tracing ....................... SUCCESS [ 0.025 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Add-Ons :: TypedValue API ................ SUCCESS [ 3.835 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Add-Ons :: Tracing :: API ................ SUCCESS [ 3.899 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Add-Ons :: Tracing :: Common ............. SUCCESS [ 12.082 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-On Tracing Decision - Parent ............ SUCCESS [ 0.025 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-On Tracing Decision ..................... SUCCESS [ 11.972 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-On Tracing Decision - Deployment ........ SUCCESS [ 1.738 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-On Tracing Decision - Integration tests . SUCCESS [01:43 min]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Add-Ons :: Task Management :: Common ..... SUCCESS [ 0.397 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-On Task Management - Parent ............. SUCCESS [ 0.024 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-On Task Management ...................... SUCCESS [ 4.442 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-On Task Management - Deployment ......... SUCCESS [ 0.544 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Add-Ons :: Marshallers :: Parent ......... SUCCESS [ 0.039 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Add-Ons :: Marshallers :: Avro ........... SUCCESS [ 2.575 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Add-Ons :: Quarkus:: Marshallers :: Parent SUCCESS [ 0.021 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Add-Ons :: Quarkus :: Marshallers :: Avro :: Parent SUCCESS [ 0.036 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Add-Ons :: Quarkus :: Marshallers :: Avro SUCCESS [ 0.449 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Add-Ons :: Quarkus :: Marshallers :: Avro :: Deployment SUCCESS [ 0.449 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Serverless Workflow :: Fluent ............ SUCCESS [ 0.518 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Serverless Workflow :: Executor:: Core ... SUCCESS [ 8.114 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-On Process Deployment - Parent .......... SUCCESS [ 0.023 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-On Process Definitions .................. SUCCESS [ 22.915 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito Add-On Process Definitions - Deployment ..... SUCCESS [ 4.448 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Serverless Workflow :: Python:: Runtime .. SUCCESS [ 0.422 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito:: Addons :: Quarkus:: Serverless Workflow:: Python:: Parent SUCCESS [ 0.022 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito:: Addons :: Quarkus:: Serverless Workflow:: Python:: Runtime FAILURE [ 0.380 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito:: Addons :: Quarkus:: Serverless Workflow:: Python:: Deployment SKIPPED
[2023-07-27T07:11:43.669Z] [INFO] Kogito:: Addons :: Quarkus:: Serverless Workflow:: Python:: Integration Test SKIPPED
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Integration Tests :: Quarkus ............. SUCCESS [ 0.108 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Integration Tests :: Quarkus :: OpenAPI Client Codegen SUCCESS [01:10 min]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Integration Tests :: Quarkus :: Rules .... SUCCESS [ 35.833 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Integration Tests :: Quarkus :: Legacy Rules SUCCESS [ 35.727 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Integration Tests :: Quarkus :: Decisions SUCCESS [ 47.853 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Integration Tests :: Quarkus :: RESTEasy Classic SUCCESS [ 37.300 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Integration Tests :: Quarkus :: RESTEasy Reactive SUCCESS [ 39.551 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Maven Plugin ............................. SUCCESS [ 4.780 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Integration Tests :: Maven Plugin ........ SUCCESS [ 55.058 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Integration Tests :: Quarkus :: Without REST SUCCESS [01:02 min]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Integration Tests :: Quarkus :: Processes SUCCESS [01:38 min]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Integration Tests :: Quarkus :: Processes :: Reactive SUCCESS [ 32.534 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Integration Tests :: Quarkus :: Processes :: Persistence SUCCESS [ 0.040 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Integration Tests :: Processes :: Persistence :: Common SUCCESS [ 3.997 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Integration Tests :: Quarkus :: Processes :: Persistence :: PostgreSQL SUCCESS [02:17 min]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Integration Tests :: Quarkus :: Processes :: Persistence :: Infinispan SUCCESS [02:02 min]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Integration Tests :: Quarkus :: Processes :: Persistence :: MongoDB SUCCESS [01:13 min]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Integration Tests :: Quarkus :: Processes :: Persistence :: Kafka SUCCESS [ 46.679 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Integration Tests :: Quarkus :: Processes :: Persistence :: JDBC SUCCESS [01:18 min]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Integration Tests :: Quarkus :: Processes :: Persistence :: File System SUCCESS [ 36.471 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Integration Tests :: Quarkus :: Processes :: Source Files SUCCESS [01:04 min]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Integration Tests :: Quarkus :: Gradle ... SUCCESS [01:39 min]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: DB Scripts Collection .................... SUCCESS [ 0.230 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Add-Ons :: Predictions ................... SUCCESS [ 0.101 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Add-Ons :: Predictions :: API ............ SUCCESS [ 3.447 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Add-Ons :: Predictions :: SMILE .......... SUCCESS [ 2.145 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Serverless Workflow :: OpenAPI :: Parser . SUCCESS [ 5.251 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Serverless Workflow :: Executor:: Service SUCCESS [ 4.658 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Serverless Workflow :: Executor:: Rest ... SUCCESS [ 7.342 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Serverless Workflow :: Executor:: gRPC ... SUCCESS [ 0.294 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Serverless Workflow :: Executor:: Kafka event implementation SUCCESS [ 5.927 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Serverless Workflow :: Executor .......... SUCCESS [ 0.131 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Serverless Workflow :: Executor:: Tests .. SUCCESS [ 7.787 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Serverless Workflow :: Executor:: Python . SUCCESS [ 49.284 s]
[2023-07-27T07:11:43.669Z] [INFO] Kogito :: Spring Boot .............................. SUCCESS [ 0.051 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Spring Boot :: BOM ....................... SUCCESS [ 0.071 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Add-Ons :: Spring Boot ................... SUCCESS [ 0.046 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Add-Ons :: CloudEvents :: Spring Boot .... SUCCESS [ 0.086 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Add-Ons :: Messaging :: Spring Boot ...... SUCCESS [ 0.428 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Add-Ons :: Spring Boot :: Events - Parent SUCCESS [ 0.060 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Add-Ons :: Events :: Event-Driven Decisions :: Spring Boot SUCCESS [ 0.362 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Add-Ons :: Events :: Event-Driven Predictions :: Spring Boot SUCCESS [ 0.564 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Add-Ons :: Events :: Event-Driven Rules :: Spring Boot SUCCESS [ 0.413 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Add-Ons :: Events :: SprintBoot :: Process :: Kafka SUCCESS [ 0.772 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Add-Ons :: Events :: MongoDB :: SprintBoot SUCCESS [ 7.108 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Spring Boot :: Starters Parent ........... SUCCESS [ 1.117 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Spring Boot :: Starter :: Decisions ...... SUCCESS [ 0.203 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Add-Ons :: Messaging :: Spring Boot (ITs) SUCCESS [ 36.707 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Add-Ons :: Spring Boot :: Monitoring :: Parent SUCCESS [ 0.056 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Add-Ons :: Monitoring Core Springboot .... SUCCESS [ 6.250 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Add-Ons :: Monitoring Prometheus Springboot SUCCESS [ 0.211 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Add-Ons :: Monitoring Elastic Springboot . SUCCESS [ 0.621 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Add-Ons :: Explainability :: Spring Boot Addon SUCCESS [ 4.850 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Spring Boot :: Starter :: Rules .......... SUCCESS [ 0.583 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Spring Boot :: Starter :: Processes ...... SUCCESS [ 0.985 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Spring Boot :: Starter :: Predictions .... SUCCESS [ 0.054 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Spring Boot :: Starter ................... SUCCESS [ 0.083 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Add-Ons :: Jobs :: Management SprintBoot Addon SUCCESS [ 4.953 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Add-Ons :: E-Mail :: Spring Boot Addon ... SUCCESS [ 0.327 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Add-Ons :: Task notification :: Spring Boot Addon SUCCESS [ 1.080 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Add-Ons :: Tracing :: Spring Boot ........ SUCCESS [ 10.125 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Rest Exception Handler:: Spring Boot ..... SUCCESS [ 4.993 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Add-Ons :: Process SVG :: Spring Boot Addon SUCCESS [ 6.489 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Add-Ons :: Process Management :: Spring Boot Addon SUCCESS [ 5.735 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Add-Ons :: Task Management :: Spring Boot Addon SUCCESS [ 0.427 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Add-Ons :: Spring Boot :: Kubernetes ..... SUCCESS [ 12.862 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Add-Ons :: Spring Boot :: Persistence :: Parent SUCCESS [ 0.040 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Add-Ons :: Persistence File System :: Springboot SUCCESS [ 0.189 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Add-Ons :: Persistence Infinispan :: Springboot SUCCESS [ 1.284 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Add-Ons :: Persistence JDBC :: Springboot SUCCESS [ 1.769 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Add-Ons :: Persistence MongoDB :: Springboot SUCCESS [ 0.922 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Add-Ons :: Persistence PostgreSQL :: Springboot SUCCESS [ 0.410 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Spring Boot :: Maven Archetype ........... SUCCESS [02:08 min]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Test Utilities :: Spring Boot ............ SUCCESS [ 13.522 s]
[2023-07-27T07:11:43.670Z] [INFO] Kogito :: Integration Tests :: Spring Boot ......... SUCCESS [04:27 min]
[2023-07-27T07:11:43.670Z] [INFO] ------------------------------------------------------------------------
[2023-07-27T07:11:43.670Z] [INFO] BUILD FAILURE
[2023-07-27T07:11:43.670Z] [INFO] ------------------------------------------------------------------------
[2023-07-27T07:11:43.670Z] [INFO] Total time: 14:49 min (Wall Clock)
[2023-07-27T07:11:43.670Z] [INFO] Finished at: 2023-07-27T03:11:42-04:00
[2023-07-27T07:11:43.670Z] [INFO] ------------------------------------------------------------------------
[2023-07-27T07:11:43.670Z] [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile) on project kogito-addons-quarkus-serverless-workflow-python: Compilation failure: Compilation failure:
[2023-07-27T07:11:43.670Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest.quarkus-3/kogito-runtimes.quarkus-3.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/python/runtime/src/main/java/org/kie/kogito/quarkus/serverless/workflow/python/PythonWorkItemHandlerConfig.java:[18,24] package javax.annotation does not exist
[2023-07-27T07:11:43.670Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest.quarkus-3/kogito-runtimes.quarkus-3.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/python/runtime/src/main/java/org/kie/kogito/quarkus/serverless/workflow/python/PythonWorkItemHandlerConfig.java:[19,24] package javax.annotation does not exist
[2023-07-27T07:11:43.670Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest.quarkus-3/kogito-runtimes.quarkus-3.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/python/runtime/src/main/java/org/kie/kogito/quarkus/serverless/workflow/python/PythonWorkItemHandlerConfig.java:[20,32] package javax.enterprise.context does not exist
[2023-07-27T07:11:43.670Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest.quarkus-3/kogito-runtimes.quarkus-3.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/python/runtime/src/main/java/org/kie/kogito/quarkus/serverless/workflow/python/PythonWorkItemHandlerConfig.java:[27,2] cannot find symbol
[2023-07-27T07:11:43.670Z] [ERROR] symbol: class ApplicationScoped
[2023-07-27T07:11:43.670Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest.quarkus-3/kogito-runtimes.quarkus-3.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/python/runtime/src/main/java/org/kie/kogito/quarkus/serverless/workflow/python/PythonWorkItemHandlerConfig.java:[33,6] cannot find symbol
[2023-07-27T07:11:43.670Z] [ERROR] symbol: class PostConstruct
[2023-07-27T07:11:43.670Z] [ERROR] location: class org.kie.kogito.quarkus.serverless.workflow.python.PythonWorkItemHandlerConfig
[2023-07-27T07:11:43.670Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest.quarkus-3/kogito-runtimes.quarkus-3.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/python/runtime/src/main/java/org/kie/kogito/quarkus/serverless/workflow/python/PythonWorkItemHandlerConfig.java:[39,6] cannot find symbol
[2023-07-27T07:11:43.670Z] [ERROR] symbol: class PreDestroy
[2023-07-27T07:11:43.670Z] [ERROR] location: class org.kie.kogito.quarkus.serverless.workflow.python.PythonWorkItemHandlerConfig
[2023-07-27T07:11:43.670Z] [ERROR] -> [Help 1]
[2023-07-27T07:11:43.670Z] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile) on project kogito-addons-quarkus-serverless-workflow-python: Compilation failure
[2023-07-27T07:11:43.670Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:347)
[2023-07-27T07:11:43.670Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:330)
[2023-07-27T07:11:43.670Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:213)
[2023-07-27T07:11:43.670Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:175)
[2023-07-27T07:11:43.670Z] at org.apache.maven.lifecycle.internal.MojoExecutor.access$000 (MojoExecutor.java:76)
[2023-07-27T07:11:43.670Z] at org.apache.maven.lifecycle.internal.MojoExecutor$1.run (MojoExecutor.java:163)
[2023-07-27T07:11:43.670Z] at org.apache.maven.plugin.DefaultMojosExecutionStrategy.execute (DefaultMojosExecutionStrategy.java:39)
[2023-07-27T07:11:43.670Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:160)
[2023-07-27T07:11:43.670Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:105)
[2023-07-27T07:11:43.670Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call (MultiThreadedBuilder.java:193)
[2023-07-27T07:11:43.670Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call (MultiThreadedBuilder.java:180)
[2023-07-27T07:11:43.670Z] at java.util.concurrent.FutureTask.run (FutureTask.java:264)
[2023-07-27T07:11:43.670Z] at java.util.concurrent.Executors$RunnableAdapter.call (Executors.java:539)
[2023-07-27T07:11:43.670Z] at java.util.concurrent.FutureTask.run (FutureTask.java:264)
[2023-07-27T07:11:43.670Z] at java.util.concurrent.ThreadPoolExecutor.runWorker (ThreadPoolExecutor.java:1136)
[2023-07-27T07:11:43.670Z] at java.util.concurrent.ThreadPoolExecutor$Worker.run (ThreadPoolExecutor.java:635)
[2023-07-27T07:11:43.670Z] at java.lang.Thread.run (Thread.java:833)
[2023-07-27T07:11:43.670Z] Caused by: org.apache.maven.plugin.compiler.CompilationFailureException: Compilation failure
[2023-07-27T07:11:43.670Z] at org.apache.maven.plugin.compiler.AbstractCompilerMojo.execute (AbstractCompilerMojo.java:1220)
[2023-07-27T07:11:43.670Z] at org.apache.maven.plugin.compiler.CompilerMojo.execute (CompilerMojo.java:187)
[2023-07-27T07:11:43.670Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:126)
[2023-07-27T07:11:43.670Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:342)
[2023-07-27T07:11:43.670Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:330)
[2023-07-27T07:11:43.670Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:213)
[2023-07-27T07:11:43.670Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:175)
[2023-07-27T07:11:43.670Z] at org.apache.maven.lifecycle.internal.MojoExecutor.access$000 (MojoExecutor.java:76)
[2023-07-27T07:11:43.670Z] at org.apache.maven.lifecycle.internal.MojoExecutor$1.run (MojoExecutor.java:163)
[2023-07-27T07:11:43.670Z] at org.apache.maven.plugin.DefaultMojosExecutionStrategy.execute (DefaultMojosExecutionStrategy.java:39)
[2023-07-27T07:11:43.670Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:160)
[2023-07-27T07:11:43.670Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:105)
[2023-07-27T07:11:43.670Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call (MultiThreadedBuilder.java:193)
[2023-07-27T07:11:43.670Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call (MultiThreadedBuilder.java:180)
[2023-07-27T07:11:43.670Z] at java.util.concurrent.FutureTask.run (FutureTask.java:264)
[2023-07-27T07:11:43.670Z] at java.util.concurrent.Executors$RunnableAdapter.call (Executors.java:539)
[2023-07-27T07:11:43.670Z] at java.util.concurrent.FutureTask.run (FutureTask.java:264)
[2023-07-27T07:11:43.670Z] at java.util.concurrent.ThreadPoolExecutor.runWorker (ThreadPoolExecutor.java:1136)
[2023-07-27T07:11:43.670Z] at java.util.concurrent.ThreadPoolExecutor$Worker.run (ThreadPoolExecutor.java:635)
[2023-07-27T07:11:43.670Z] at java.lang.Thread.run (Thread.java:833)
[2023-07-27T07:11:43.670Z] [ERROR]
[2023-07-27T07:11:43.670Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2023-07-27T07:11:43.670Z] [ERROR]
[2023-07-27T07:11:43.670Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2023-07-27T07:11:43.670Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[2023-07-27T07:11:43.670Z] [ERROR]
[2023-07-27T07:11:43.670Z] [ERROR] After correcting the problems, you can resume the build with the command
[2023-07-27T07:11:43.671Z] [ERROR] mvn -rf :kogito-addons-quarkus-serverless-workflow-python
[2023-07-27T07:11:46.926Z] [INFO] kiegroup/kogito-runtimes failed. Won't execute remaining commands and projects
[2023-07-27T07:11:46.926Z] [INFO] Execution summary for kiegroup/kogito-runtimes
[2023-07-27T07:11:46.926Z] # [BEFORE] [kiegroup/kogito-runtimes] export INTEGRATION_BRANCH=
[2023-07-27T07:11:46.926Z] [INFO] OK [Executed in 0.160451 ms]
[2023-07-27T07:11:46.926Z]
[2023-07-27T07:11:46.926Z] # [BEFORE] [kiegroup/kogito-runtimes] bash -c "if [ ! -z 'quarkus-3' ] && [ -f .ci/environments/update.sh ]; then .ci/environments/update.sh quarkus-3 ; fi"
[2023-07-27T07:11:46.926Z] [INFO] OK [Executed in 196293.321178 ms]
[2023-07-27T07:11:46.926Z]
[2023-07-27T07:11:46.926Z] # [COMMANDS] [kiegroup/kogito-runtimes] export MVN_CMD=`bash -c "if [ '' = 'true' ]; then printf 'deploy '; else printf 'install'; fi"`
[2023-07-27T07:11:46.926Z] [INFO] OK [Executed in 6.169993 ms]
[2023-07-27T07:11:46.926Z]
[2023-07-27T07:11:46.926Z] # [COMMANDS] [kiegroup/kogito-runtimes] mvn dependency:tree clean -Dfull install -Denforcer.skip -s /home/jenkins/workspace/KIE/kogito/main/pullrequest.quarkus-3/kogito-runtimes.quarkus-3.kogito-runtimes@tmp/config8185858783142407292tmp -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 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B
[2023-07-27T07:11:46.926Z] [INFO] NOT OK [Executed in 893476.379824 ms]
[2023-07-27T07:11:46.926Z] [ERROR] The process '/opt/tools/apache-maven-3.9.1/bin/mvn' failed with exit code 1
[2023-07-27T07:11:46.926Z]
[2023-07-27T07:11:46.926Z] [INFO] [AFTER] No commands were found for kiegroup/kogito-runtimes
[2023-07-27T07:11:46.926Z]
[2023-07-27T07:11:46.926Z] # Uploading artifacts
[2023-07-27T07:11:46.926Z] [INFO] Will not upload any artifacts in CLI environment
[2023-07-27T07:11:46.926Z]
[2023-07-27T07:11:46.926Z] [ERROR] Failed to execute commands for kiegroup/kogito-runtimes
[2023-07-27T07:11:46.926Z] [ERROR] Failed to execute mvn dependency:tree clean -Dfull install -Denforcer.skip -s /home/jenkins/workspace/KIE/kogito/main/pullrequest.quarkus-3/kogito-runtimes.quarkus-3.kogito-runtimes@tmp/config8185858783142407292tmp -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 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B :
[2023-07-27T07:11:46.926Z] [ERROR] The process '/opt/tools/apache-maven-3.9.1/bin/mvn' failed with exit code 1
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] }
[2023-07-27T07:11:47.214Z] Deleting 1 temporary files
[Pipeline] // configFileProvider
[Pipeline] }
[Pipeline] // script
Post stage
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-07-27T07:11:48.186Z] + find . -type d -name node_modules -exec rm -rf '{}' ';'
[Pipeline] junit
[2023-07-27T07:11:53.484Z] Recording test results
[2023-07-27T07:11:59.103Z] [Checks API] No suitable checks publisher found.
[Pipeline] archiveArtifacts
[2023-07-27T07:11:59.128Z] Archiving artifacts
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-07-27T07:12:00.489Z] + rm -rf console.log
[Pipeline] sh
[2023-07-27T07:12:00.790Z] + 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.quarkus-3/job/kogito-runtimes.quarkus-3.kogito-runtimes/47/consoleText
[2023-07-27T07:12:00.790Z] + tail -n 300

@radtriste
Copy link
Contributor Author

jenkins rewrite quarkus-3

@kie-ci1
Copy link

kie-ci1 commented Jul 27, 2023

Rewrite quarkus-3 before.sh patch file job #7 was: FAILURE
Possible explanation: Pipeline failure or project build failure

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/kogito/job/main/job/pullrequest.quarkus-3/job/kogito-runtimes.rewrite/7/display/redirect
See console log:

Console Logs [2023-07-27T07:27:46.443Z] No rewrite to be done. Exited
[2023-07-27T07:27:46.443Z] Apply git patch /home/jenkins/workspace/KIE/kogito/main/pullrequest.quarkus-3/kogito-runtimes.rewrite/drools/.ci/environments/quarkus-3/patches/0001_before_sh.patch
[2023-07-27T07:27:46.443Z] /home/jenkins/workspace/KIE/kogito/main/pullrequest.quarkus-3/kogito-runtimes.rewrite/drools/.ci/environments/quarkus-3/patches/0001_before_sh.patch:2203: trailing whitespace.
[2023-07-27T07:27:46.443Z]
[2023-07-27T07:27:46.443Z] /home/jenkins/workspace/KIE/kogito/main/pullrequest.quarkus-3/kogito-runtimes.rewrite/drools/.ci/environments/quarkus-3/patches/0001_before_sh.patch:2242: trailing whitespace.
[2023-07-27T07:27:46.443Z]
[2023-07-27T07:27:46.443Z] /home/jenkins/workspace/KIE/kogito/main/pullrequest.quarkus-3/kogito-runtimes.rewrite/drools/.ci/environments/quarkus-3/patches/0001_before_sh.patch:2248: trailing whitespace.
[2023-07-27T07:27:46.443Z]
[2023-07-27T07:27:46.443Z] /home/jenkins/workspace/KIE/kogito/main/pullrequest.quarkus-3/kogito-runtimes.rewrite/drools/.ci/environments/quarkus-3/patches/0001_before_sh.patch:2303: trailing whitespace.
[2023-07-27T07:27:46.443Z] *
[2023-07-27T07:27:46.443Z] /home/jenkins/workspace/KIE/kogito/main/pullrequest.quarkus-3/kogito-runtimes.rewrite/drools/.ci/environments/quarkus-3/patches/0001_before_sh.patch:2672: trailing whitespace.
[2023-07-27T07:27:46.443Z] * This class is used to test transactions.
[2023-07-27T07:27:46.443Z] error: patch failed: build-parent/pom.xml:40
[2023-07-27T07:27:46.443Z] error: build-parent/pom.xml: patch does not apply
[Pipeline] }
[Pipeline] // dir
[Pipeline] }
[Pipeline] // script
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Generate rewrite patch)
Stage "Generate rewrite patch" skipped due to earlier failure(s)
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Push changes)
Stage "Push changes" skipped due to earlier failure(s)
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Declarative: Post Actions)
[Pipeline] script
[Pipeline] {
[Pipeline] cleanWs
[2023-07-27T07:27:47.069Z] [WS-CLEANUP] Deleting project workspace...
[2023-07-27T07:27:47.070Z] [WS-CLEANUP] Deferred wipeout is used...
[2023-07-27T07:27:47.077Z] [WS-CLEANUP] done
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-07-27T07:27:47.510Z] + 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.quarkus-3/job/kogito-runtimes.rewrite/7/api/json
[Pipeline] readJSON
[Pipeline] sh
[2023-07-27T07:27:48.042Z] + 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.quarkus-3/job/kogito-runtimes.rewrite/7/consoleText
[2023-07-27T07:27:48.042Z] + tail -n 50

@radtriste
Copy link
Contributor Author

jenkins rewrite quarkus-3

@radtriste
Copy link
Contributor Author

jenkins run quarkus-3

@kie-ci3
Copy link
Contributor

kie-ci3 commented Jul 27, 2023

(quarkus-3) - kogito-runtimes job #48 was: FAILURE
Possible explanation: Pipeline failure or project build failure

Reproducer

export BUILD_MVN_OPTS_CURRENT=-T 1C
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/3141 --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.quarkus-3/job/kogito-runtimes.quarkus-3.kogito-runtimes/48/display/redirect

Test results:

  • PASSED: 3276
  • FAILED: 17

Those are the test failures:

org.kie.persistence.jdbc.OracleProcessInstancesIT.(?) Container startup failed
org.kie.kogito.addons.quarkus.knative.eventing.KSinkInjectionHealthCheckDisabledIT.kSinkInjectionHealthDisabled java.lang.IllegalStateException: Unable to determine the status of the running process. See the above logs for details
org.kie.kogito.process.definitions.ProcessDefinitionsResourceTest.testAddDefinition Read timed out
io.quarkus.it.kogito.devmode.DevMojoIT.testDMNHotReload Condition with io.quarkus.it.kogito.devmode.DevMojoIT was not fulfilled within 2 minutes.
org.kie.kogito.quarkus.workflows.PojoServiceIT.testPojo
Expecting value to be true but was false
org.kie.kogito.quarkus.workflows.PojoServiceIT.testTypesPojo
Expecting value to be true but was false
org.kie.kogito.quarkus.workflows.PojoServiceIT.testFilterPojo
Expecting value to be true but was false
org.kie.kogito.quarkus.workflows.SwitchStateEventConditionBasedIT.switchStateEventConditionTimeoutsEndTApproved java.util.concurrent.TimeoutException: Timeout after waiting for 10000 ms.
org.kie.kogito.quarkus.workflows.SwitchStateEventConditionBasedIT.switchStateEventConditionTimeoutsTransitionDenied java.util.concurrent.TimeoutException: Timeout after waiting for 10000 ms.
org.kie.kogito.integrationtests.quarkus.AdHocFragmentsIT.testUserTaskProcess java.lang.IllegalStateException: Unable to determine the status of the running process. See the above logs for details
org.kie.kogito.integrationtests.springboot.OASTest.testOASisValid
Expecting empty but was: ["Unable to read location `http://localhost:44059/v3/api-docs`"]
org.kie.kogito.integrationtests.springboot.OASTest.testOASisSwaggerUICompatible
Expecting empty but was: ["Unable to read location `http://localhost:44059/v3/api-docs`"]
org.kie.kogito.integrationtests.springboot.PMMLRegressionTest.testEvaluateLinRegResult 1 expectation failed.
Expected status code <200> but was <404>.
org.kie.kogito.integrationtests.springboot.PMMLTreeTest.testEvaluateSampleMineResult 1 expectation failed.
Expected status code <200> but was <404>.
org.kie.kogito.integrationtests.springboot.PingPongMessageTest.testPingPongBetweenProcessInstances Assertion condition defined as a org.kie.kogito.integrationtests.springboot.PingPongMessageTest 1 expectation failed.
Expected status code <200> but was <404>.
within 10 seconds.
org.kie.kogito.integrationtests.springboot.ProcessSvgAddonTest.testGetSvgProcessInstances javax/servlet/DispatcherType
org.kie.kogito.integrationtests.springboot.ProcessSvgAddonTest.testInvalidSvgProcessInstances Could not initialize class com.github.tomakehurst.wiremock.jetty9.JettyHttpServerFactory

See console log:

Console Logs [2023-07-27T12:15:54.952Z] [INFO] Kogito Add-On Knative - Parent ..................... SUCCESS [ 0.033 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito Add-On Knative Eventing - Parent ............ SUCCESS [ 0.024 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito Add-On Knative Eventing ..................... SUCCESS [ 7.693 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito Add-On Knative Eventing - Deployment ........ SUCCESS [ 8.276 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito Add-On Knative Eventing - Integration Tests . SUCCESS [06:56 min]
[2023-07-27T12:15:54.952Z] [INFO] Kogito :: Add-Ons :: Kubernetes Service Catalog .... SUCCESS [ 3.164 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito :: Add-Ons :: Kubernetes .................... SUCCESS [ 6.580 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito Add-On Fabric8 Kubernetes Service Catalog - Parent SUCCESS [ 0.055 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito Add-On Fabric8 Kubernetes Service Catalog Tests Utils SUCCESS [ 1.761 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito Add-On Fabric8 Kubernetes Service Catalog ... SUCCESS [01:37 min]
[2023-07-27T12:15:54.952Z] [INFO] Kogito Add-On Kubernetes - Parent .................. SUCCESS [ 0.037 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito Add-On Kubernetes ........................... SUCCESS [ 34.621 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito Add-On Kubernetes - Deployment .............. SUCCESS [ 22.796 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito Add-On Knative Serving - Parent ............. SUCCESS [ 0.030 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito Add-On Knative Serving ...................... SUCCESS [06:39 min]
[2023-07-27T12:15:54.952Z] [INFO] Kogito Add-On Knative Serving - Deployment ......... SUCCESS [ 1.619 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito :: Add-Ons :: Events :: Parent .............. SUCCESS [ 0.061 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito :: Add-Ons :: Events :: Event-Driven Decisions SUCCESS [ 10.249 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito Add-On Events Decisions - Parent ............ SUCCESS [ 0.084 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito Add-On Events Decisions ..................... SUCCESS [ 0.888 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito Add-On Events Decisions - Deployment ........ SUCCESS [ 0.363 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito :: Add-Ons :: Events :: Event-Driven Predictions SUCCESS [ 6.474 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito Add-On Events Predictions - Parent .......... SUCCESS [ 0.052 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito Add-On Events Predictions ................... SUCCESS [ 0.853 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito Add-On Events Predictions - Deployment ...... SUCCESS [ 0.561 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito :: Add-Ons :: Events :: Event-Driven Rules .. SUCCESS [ 4.155 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito Add-On Events Rules - Parent ................ SUCCESS [ 0.049 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito :: Add-Ons :: Events :: Event-Driven Rules :: Quarkus SUCCESS [ 0.851 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito Add-On Events Rules - Deployment ............ SUCCESS [ 0.833 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito :: Add-Ons :: Events :: MongoDB ............. SUCCESS [ 9.070 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito Add-On Events MongoDB - Parent .............. SUCCESS [ 0.035 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito Add-On Events MongoDB ....................... SUCCESS [04:27 min]
[2023-07-27T12:15:54.952Z] [INFO] Kogito Add-On Events MongoDB - Deployment .......... SUCCESS [ 2.264 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito :: Add-Ons :: Quarkus :: Camel :: Parent .... SUCCESS [ 0.059 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito :: Add-Ons :: Quarkus :: Camel :: Runtimes .. SUCCESS [ 3.839 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito :: Add-Ons :: Quarkus :: Camel :: Deployment SUCCESS [ 9.391 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito :: Add-Ons :: Quarkus :: Camel :: Integration Tests SUCCESS [01:26 min]
[2023-07-27T12:15:54.952Z] [INFO] Kogito Add-On Fabric8 Kubernetes Service Catalog - Deployment SUCCESS [ 5.954 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito :: Add-Ons :: Jobs .......................... SUCCESS [ 0.030 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito :: Add-Ons :: Jobs :: API ................... SUCCESS [ 5.153 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito Add-Ons Quarkus Jobs Parent ................. SUCCESS [ 0.075 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito Add-Ons Quarkus Jobs Common - Parent ........ SUCCESS [ 0.034 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito Add-Ons Quarkus Jobs Common - Messaging ..... SUCCESS [ 2.568 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito Add-Ons Quarkus - Rest Callback ............. SUCCESS [ 7.766 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito :: Add-Ons :: Jobs :: Management Common ..... SUCCESS [ 2.083 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito Add-Ons Quarkus Jobs Management - Parent .... SUCCESS [ 0.032 s]
[2023-07-27T12:15:54.952Z] [INFO] Kogito Add-Ons Quarkus Jobs - Management ........... SUCCESS [ 10.027 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-Ons Quarkus Jobs Management - Deployment SUCCESS [ 3.729 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-Ons Quarkus Jobs Messaging - Parent ..... SUCCESS [ 0.056 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-Ons Quarkus Jobs - Messaging ............ SUCCESS [ 9.142 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-Ons Quarkus Jobs Messaging - Deployment . SUCCESS [ 4.248 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-Ons Quarkus Jobs Knative Eventing - Parent SUCCESS [ 0.037 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-Ons Quarkus Jobs - Knative Eventing ..... SUCCESS [ 11.470 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-Ons Quarkus Jobs Knative Eventing - Deployment SUCCESS [ 13.801 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Explainability ................ SUCCESS [ 7.768 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-On Explainability - Parent .............. SUCCESS [ 0.043 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-On Explainability ....................... SUCCESS [ 6.190 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-On Explainability - Deployment .......... SUCCESS [ 0.734 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-On Explainability - Integration tests ... SUCCESS [ 36.632 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: E-Mail :: Common .............. SUCCESS [ 2.366 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-On Mail - Parent ........................ SUCCESS [ 0.112 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-On Mail ................................. SUCCESS [ 25.374 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-On Mail - Deployment .................... SUCCESS [ 0.937 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Monitoring .................... SUCCESS [ 0.023 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Monitoring Core ............... SUCCESS [ 9.234 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-On Monitoring - Parent .................. SUCCESS [ 0.055 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-On Monitoring Core ...................... SUCCESS [ 8.316 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Monitoring Prometheus Common .. SUCCESS [ 0.513 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-On Monitoring Prometheus - Parent ....... SUCCESS [ 0.031 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-On Monitoring Prometheus ................ SUCCESS [ 3.383 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-On Monitoring Prometheus - Deployment ... SUCCESS [ 1.327 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Monitoring Elastic Common ..... SUCCESS [ 2.912 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-On Monitoring Elastic - Parent .......... SUCCESS [ 0.033 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-On Monitoring Elastic ................... SUCCESS [ 2.177 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-On Monitoring Elastic - Deployment ...... SUCCESS [ 1.261 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Process SVG :: Common ......... SUCCESS [ 5.089 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-On Process SVG - Parent ................. SUCCESS [ 0.061 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-On Process SVG .......................... SUCCESS [ 8.926 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-On Process SVG - Deployment ............. SUCCESS [ 0.431 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-On Task Notification - Parent ........... SUCCESS [ 0.029 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-On Task Notification .................... SUCCESS [ 3.415 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-On Task Notification - Deployment ....... SUCCESS [ 0.484 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Tracing ....................... SUCCESS [ 0.026 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: TypedValue API ................ SUCCESS [ 3.362 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Tracing :: API ................ SUCCESS [ 4.071 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Tracing :: Common ............. SUCCESS [ 11.517 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-On Tracing Decision - Parent ............ SUCCESS [ 0.065 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-On Tracing Decision ..................... SUCCESS [ 10.064 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-On Tracing Decision - Deployment ........ SUCCESS [ 3.183 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-On Tracing Decision - Integration tests . SUCCESS [01:10 min]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Task Management :: Common ..... SUCCESS [ 0.276 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-On Task Management - Parent ............. SUCCESS [ 0.036 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-On Task Management ...................... SUCCESS [ 4.072 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-On Task Management - Deployment ......... SUCCESS [ 0.509 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Marshallers :: Parent ......... SUCCESS [ 0.022 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Marshallers :: Avro ........... SUCCESS [ 4.343 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Quarkus:: Marshallers :: Parent SUCCESS [ 0.051 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Quarkus :: Marshallers :: Avro :: Parent SUCCESS [ 0.025 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Quarkus :: Marshallers :: Avro SUCCESS [ 0.209 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Quarkus :: Marshallers :: Avro :: Deployment SUCCESS [ 0.468 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Serverless Workflow :: Fluent ............ SUCCESS [ 0.679 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Serverless Workflow :: Executor:: Core ... SUCCESS [ 8.741 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-On Process Deployment - Parent .......... SUCCESS [ 0.026 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-On Process Definitions .................. SUCCESS [03:34 min]
[2023-07-27T12:15:54.953Z] [INFO] Kogito Add-On Process Definitions - Deployment ..... SUCCESS [ 3.675 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Serverless Workflow :: Python:: Runtime .. SUCCESS [ 0.625 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito:: Addons :: Quarkus:: Serverless Workflow:: Python:: Parent SUCCESS [ 0.028 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito:: Addons :: Quarkus:: Serverless Workflow:: Python:: Runtime FAILURE [ 3.257 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito:: Addons :: Quarkus:: Serverless Workflow:: Python:: Deployment SKIPPED
[2023-07-27T12:15:54.953Z] [INFO] Kogito:: Addons :: Quarkus:: Serverless Workflow:: Python:: Integration Test SKIPPED
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Integration Tests :: Quarkus ............. SUCCESS [ 0.079 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Integration Tests :: Quarkus :: OpenAPI Client Codegen SUCCESS [06:47 min]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Integration Tests :: Quarkus :: Rules .... SUCCESS [ 38.518 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Integration Tests :: Quarkus :: Legacy Rules SUCCESS [ 37.736 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Integration Tests :: Quarkus :: Decisions SUCCESS [ 35.871 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Integration Tests :: Quarkus :: RESTEasy Classic SUCCESS [ 31.860 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Integration Tests :: Quarkus :: RESTEasy Reactive SUCCESS [ 32.745 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Maven Plugin ............................. SUCCESS [ 5.573 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Integration Tests :: Maven Plugin ........ SUCCESS [04:03 min]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Integration Tests :: Quarkus :: Without REST SUCCESS [01:08 min]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Integration Tests :: Quarkus :: Processes SUCCESS [07:23 min]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Integration Tests :: Quarkus :: Processes :: Reactive SUCCESS [ 47.684 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Integration Tests :: Quarkus :: Processes :: Persistence SUCCESS [ 0.030 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Integration Tests :: Processes :: Persistence :: Common SUCCESS [ 6.774 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Integration Tests :: Quarkus :: Processes :: Persistence :: PostgreSQL SUCCESS [05:08 min]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Integration Tests :: Quarkus :: Processes :: Persistence :: Infinispan SUCCESS [02:24 min]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Integration Tests :: Quarkus :: Processes :: Persistence :: MongoDB SUCCESS [08:00 min]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Integration Tests :: Quarkus :: Processes :: Persistence :: Kafka SUCCESS [04:18 min]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Integration Tests :: Quarkus :: Processes :: Persistence :: JDBC SUCCESS [01:36 min]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Integration Tests :: Quarkus :: Processes :: Persistence :: File System SUCCESS [ 37.917 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Integration Tests :: Quarkus :: Processes :: Source Files SUCCESS [06:37 min]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Integration Tests :: Quarkus :: Gradle ... SUCCESS [05:05 min]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: DB Scripts Collection .................... SUCCESS [ 0.421 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Predictions ................... SUCCESS [ 0.028 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Predictions :: API ............ SUCCESS [ 3.149 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Predictions :: SMILE .......... SUCCESS [ 1.987 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Serverless Workflow :: OpenAPI :: Parser . SUCCESS [ 5.359 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Serverless Workflow :: Executor:: Service SUCCESS [ 3.741 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Serverless Workflow :: Executor:: Rest ... SUCCESS [ 6.997 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Serverless Workflow :: Executor:: gRPC ... SUCCESS [ 0.743 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Serverless Workflow :: Executor:: Kafka event implementation SUCCESS [ 6.115 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Serverless Workflow :: Executor .......... SUCCESS [ 0.033 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Serverless Workflow :: Executor:: Tests .. SUCCESS [ 7.191 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Serverless Workflow :: Executor:: Python . SUCCESS [ 46.500 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Spring Boot .............................. SUCCESS [ 0.072 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Spring Boot :: BOM ....................... SUCCESS [ 0.071 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Spring Boot ................... SUCCESS [ 0.140 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: CloudEvents :: Spring Boot .... SUCCESS [ 0.028 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Messaging :: Spring Boot ...... SUCCESS [ 0.869 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Spring Boot :: Events - Parent SUCCESS [ 0.027 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Events :: Event-Driven Decisions :: Spring Boot SUCCESS [ 0.314 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Events :: Event-Driven Predictions :: Spring Boot SUCCESS [ 0.474 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Events :: Event-Driven Rules :: Spring Boot SUCCESS [ 0.378 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Events :: SprintBoot :: Process :: Kafka SUCCESS [ 0.839 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Events :: MongoDB :: SprintBoot SUCCESS [ 7.160 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Spring Boot :: Starters Parent ........... SUCCESS [ 0.814 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Spring Boot :: Starter :: Decisions ...... SUCCESS [ 0.133 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Messaging :: Spring Boot (ITs) SUCCESS [ 41.224 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Spring Boot :: Monitoring :: Parent SUCCESS [ 0.027 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Monitoring Core Springboot .... SUCCESS [ 5.906 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Monitoring Prometheus Springboot SUCCESS [ 0.092 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Monitoring Elastic Springboot . SUCCESS [ 0.440 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Explainability :: Spring Boot Addon SUCCESS [ 5.334 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Spring Boot :: Starter :: Rules .......... SUCCESS [ 0.132 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Spring Boot :: Starter :: Processes ...... SUCCESS [ 1.123 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Spring Boot :: Starter :: Predictions .... SUCCESS [ 0.182 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Spring Boot :: Starter ................... SUCCESS [ 0.079 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Jobs :: Management SprintBoot Addon SUCCESS [ 5.089 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: E-Mail :: Spring Boot Addon ... SUCCESS [ 0.406 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Task notification :: Spring Boot Addon SUCCESS [ 0.809 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Tracing :: Spring Boot ........ SUCCESS [ 10.557 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Rest Exception Handler:: Spring Boot ..... SUCCESS [ 4.998 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Process SVG :: Spring Boot Addon SUCCESS [ 6.322 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Process Management :: Spring Boot Addon SUCCESS [ 6.119 s]
[2023-07-27T12:15:54.953Z] [INFO] Kogito :: Add-Ons :: Task Management :: Spring Boot Addon SUCCESS [ 0.309 s]
[2023-07-27T12:15:54.954Z] [INFO] Kogito :: Add-Ons :: Spring Boot :: Kubernetes ..... SUCCESS [ 12.599 s]
[2023-07-27T12:15:54.954Z] [INFO] Kogito :: Add-Ons :: Spring Boot :: Persistence :: Parent SUCCESS [ 0.049 s]
[2023-07-27T12:15:54.954Z] [INFO] Kogito :: Add-Ons :: Persistence File System :: Springboot SUCCESS [ 0.333 s]
[2023-07-27T12:15:54.954Z] [INFO] Kogito :: Add-Ons :: Persistence Infinispan :: Springboot SUCCESS [ 0.632 s]
[2023-07-27T12:15:54.954Z] [INFO] Kogito :: Add-Ons :: Persistence JDBC :: Springboot SUCCESS [ 0.743 s]
[2023-07-27T12:15:54.954Z] [INFO] Kogito :: Add-Ons :: Persistence MongoDB :: Springboot SUCCESS [ 1.261 s]
[2023-07-27T12:15:54.954Z] [INFO] Kogito :: Add-Ons :: Persistence PostgreSQL :: Springboot SUCCESS [ 0.738 s]
[2023-07-27T12:15:54.954Z] [INFO] Kogito :: Spring Boot :: Maven Archetype ........... SUCCESS [02:09 min]
[2023-07-27T12:15:54.954Z] [INFO] Kogito :: Test Utilities :: Spring Boot ............ SUCCESS [ 14.159 s]
[2023-07-27T12:15:54.954Z] [INFO] Kogito :: Integration Tests :: Spring Boot ......... SUCCESS [09:11 min]
[2023-07-27T12:15:54.954Z] [INFO] ------------------------------------------------------------------------
[2023-07-27T12:15:54.954Z] [INFO] BUILD FAILURE
[2023-07-27T12:15:54.954Z] [INFO] ------------------------------------------------------------------------
[2023-07-27T12:15:54.954Z] [INFO] Total time: 28:44 min (Wall Clock)
[2023-07-27T12:15:54.954Z] [INFO] Finished at: 2023-07-27T08:15:54-04:00
[2023-07-27T12:15:54.954Z] [INFO] ------------------------------------------------------------------------
[2023-07-27T12:15:55.209Z] [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile) on project kogito-addons-quarkus-serverless-workflow-python: Compilation failure: Compilation failure:
[2023-07-27T12:15:55.209Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest.quarkus-3/kogito-runtimes.quarkus-3.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/python/runtime/src/main/java/org/kie/kogito/quarkus/serverless/workflow/python/PythonWorkItemHandlerConfig.java:[18,24] package javax.annotation does not exist
[2023-07-27T12:15:55.209Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest.quarkus-3/kogito-runtimes.quarkus-3.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/python/runtime/src/main/java/org/kie/kogito/quarkus/serverless/workflow/python/PythonWorkItemHandlerConfig.java:[19,24] package javax.annotation does not exist
[2023-07-27T12:15:55.209Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest.quarkus-3/kogito-runtimes.quarkus-3.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/python/runtime/src/main/java/org/kie/kogito/quarkus/serverless/workflow/python/PythonWorkItemHandlerConfig.java:[20,32] package javax.enterprise.context does not exist
[2023-07-27T12:15:55.209Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest.quarkus-3/kogito-runtimes.quarkus-3.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/python/runtime/src/main/java/org/kie/kogito/quarkus/serverless/workflow/python/PythonWorkItemHandlerConfig.java:[27,2] cannot find symbol
[2023-07-27T12:15:55.209Z] [ERROR] symbol: class ApplicationScoped
[2023-07-27T12:15:55.209Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest.quarkus-3/kogito-runtimes.quarkus-3.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/python/runtime/src/main/java/org/kie/kogito/quarkus/serverless/workflow/python/PythonWorkItemHandlerConfig.java:[33,6] cannot find symbol
[2023-07-27T12:15:55.209Z] [ERROR] symbol: class PostConstruct
[2023-07-27T12:15:55.209Z] [ERROR] location: class org.kie.kogito.quarkus.serverless.workflow.python.PythonWorkItemHandlerConfig
[2023-07-27T12:15:55.209Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest.quarkus-3/kogito-runtimes.quarkus-3.kogito-runtimes/bc/kiegroup_kogito-runtimes/quarkus/addons/python/runtime/src/main/java/org/kie/kogito/quarkus/serverless/workflow/python/PythonWorkItemHandlerConfig.java:[39,6] cannot find symbol
[2023-07-27T12:15:55.209Z] [ERROR] symbol: class PreDestroy
[2023-07-27T12:15:55.209Z] [ERROR] location: class org.kie.kogito.quarkus.serverless.workflow.python.PythonWorkItemHandlerConfig
[2023-07-27T12:15:55.209Z] [ERROR] -> [Help 1]
[2023-07-27T12:15:55.209Z] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile) on project kogito-addons-quarkus-serverless-workflow-python: Compilation failure
[2023-07-27T12:15:55.209Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:347)
[2023-07-27T12:15:55.209Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:330)
[2023-07-27T12:15:55.209Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:213)
[2023-07-27T12:15:55.209Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:175)
[2023-07-27T12:15:55.209Z] at org.apache.maven.lifecycle.internal.MojoExecutor.access$000 (MojoExecutor.java:76)
[2023-07-27T12:15:55.209Z] at org.apache.maven.lifecycle.internal.MojoExecutor$1.run (MojoExecutor.java:163)
[2023-07-27T12:15:55.209Z] at org.apache.maven.plugin.DefaultMojosExecutionStrategy.execute (DefaultMojosExecutionStrategy.java:39)
[2023-07-27T12:15:55.209Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:160)
[2023-07-27T12:15:55.209Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:105)
[2023-07-27T12:15:55.209Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call (MultiThreadedBuilder.java:193)
[2023-07-27T12:15:55.209Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call (MultiThreadedBuilder.java:180)
[2023-07-27T12:15:55.209Z] at java.util.concurrent.FutureTask.run (FutureTask.java:264)
[2023-07-27T12:15:55.209Z] at java.util.concurrent.Executors$RunnableAdapter.call (Executors.java:539)
[2023-07-27T12:15:55.209Z] at java.util.concurrent.FutureTask.run (FutureTask.java:264)
[2023-07-27T12:15:55.209Z] at java.util.concurrent.ThreadPoolExecutor.runWorker (ThreadPoolExecutor.java:1136)
[2023-07-27T12:15:55.209Z] at java.util.concurrent.ThreadPoolExecutor$Worker.run (ThreadPoolExecutor.java:635)
[2023-07-27T12:15:55.209Z] at java.lang.Thread.run (Thread.java:833)
[2023-07-27T12:15:55.209Z] Caused by: org.apache.maven.plugin.compiler.CompilationFailureException: Compilation failure
[2023-07-27T12:15:55.209Z] at org.apache.maven.plugin.compiler.AbstractCompilerMojo.execute (AbstractCompilerMojo.java:1220)
[2023-07-27T12:15:55.209Z] at org.apache.maven.plugin.compiler.CompilerMojo.execute (CompilerMojo.java:187)
[2023-07-27T12:15:55.209Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:126)
[2023-07-27T12:15:55.209Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:342)
[2023-07-27T12:15:55.209Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:330)
[2023-07-27T12:15:55.209Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:213)
[2023-07-27T12:15:55.209Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:175)
[2023-07-27T12:15:55.209Z] at org.apache.maven.lifecycle.internal.MojoExecutor.access$000 (MojoExecutor.java:76)
[2023-07-27T12:15:55.209Z] at org.apache.maven.lifecycle.internal.MojoExecutor$1.run (MojoExecutor.java:163)
[2023-07-27T12:15:55.209Z] at org.apache.maven.plugin.DefaultMojosExecutionStrategy.execute (DefaultMojosExecutionStrategy.java:39)
[2023-07-27T12:15:55.209Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:160)
[2023-07-27T12:15:55.209Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:105)
[2023-07-27T12:15:55.209Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call (MultiThreadedBuilder.java:193)
[2023-07-27T12:15:55.209Z] at org.apache.maven.lifecycle.internal.builder.multithreaded.MultiThreadedBuilder$1.call (MultiThreadedBuilder.java:180)
[2023-07-27T12:15:55.209Z] at java.util.concurrent.FutureTask.run (FutureTask.java:264)
[2023-07-27T12:15:55.209Z] at java.util.concurrent.Executors$RunnableAdapter.call (Executors.java:539)
[2023-07-27T12:15:55.209Z] at java.util.concurrent.FutureTask.run (FutureTask.java:264)
[2023-07-27T12:15:55.209Z] at java.util.concurrent.ThreadPoolExecutor.runWorker (ThreadPoolExecutor.java:1136)
[2023-07-27T12:15:55.209Z] at java.util.concurrent.ThreadPoolExecutor$Worker.run (ThreadPoolExecutor.java:635)
[2023-07-27T12:15:55.209Z] at java.lang.Thread.run (Thread.java:833)
[2023-07-27T12:15:55.209Z] [ERROR]
[2023-07-27T12:15:55.209Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2023-07-27T12:15:55.209Z] [ERROR]
[2023-07-27T12:15:55.209Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2023-07-27T12:15:55.209Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[2023-07-27T12:15:55.209Z] [ERROR]
[2023-07-27T12:15:55.209Z] [ERROR] After correcting the problems, you can resume the build with the command
[2023-07-27T12:15:55.209Z] [ERROR] mvn -rf :kogito-addons-quarkus-serverless-workflow-python
[2023-07-27T12:15:57.749Z] [INFO] kiegroup/kogito-runtimes failed. Won't execute remaining commands and projects
[2023-07-27T12:15:57.749Z] [INFO] Execution summary for kiegroup/kogito-runtimes
[2023-07-27T12:15:57.749Z] # [BEFORE] [kiegroup/kogito-runtimes] export INTEGRATION_BRANCH=
[2023-07-27T12:15:57.749Z] [INFO] OK [Executed in 0.153588 ms]
[2023-07-27T12:15:57.749Z]
[2023-07-27T12:15:57.749Z] # [BEFORE] [kiegroup/kogito-runtimes] bash -c "if [ ! -z 'quarkus-3' ] && [ -f .ci/environments/update.sh ]; then .ci/environments/update.sh quarkus-3 ; fi"
[2023-07-27T12:15:57.749Z] [INFO] OK [Executed in 196444.456833 ms]
[2023-07-27T12:15:57.749Z]
[2023-07-27T12:15:57.749Z] # [COMMANDS] [kiegroup/kogito-runtimes] export MVN_CMD=`bash -c "if [ '' = 'true' ]; then printf 'deploy '; else printf 'install'; fi"`
[2023-07-27T12:15:57.749Z] [INFO] OK [Executed in 6.890556 ms]
[2023-07-27T12:15:57.749Z]
[2023-07-27T12:15:57.749Z] # [COMMANDS] [kiegroup/kogito-runtimes] mvn dependency:tree clean -Dfull install -Denforcer.skip -s /home/jenkins/workspace/KIE/kogito/main/pullrequest.quarkus-3/kogito-runtimes.quarkus-3.kogito-runtimes@tmp/config9815457899479538130tmp -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 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B
[2023-07-27T12:15:57.749Z] [INFO] NOT OK [Executed in 1728213.154895 ms]
[2023-07-27T12:15:57.749Z] [ERROR] The process '/opt/tools/apache-maven-3.9.1/bin/mvn' failed with exit code 1
[2023-07-27T12:15:57.749Z]
[2023-07-27T12:15:57.749Z] [INFO] [AFTER] No commands were found for kiegroup/kogito-runtimes
[2023-07-27T12:15:57.749Z]
[2023-07-27T12:15:57.749Z] # Uploading artifacts
[2023-07-27T12:15:57.749Z] [INFO] Will not upload any artifacts in CLI environment
[2023-07-27T12:15:57.749Z]
[2023-07-27T12:15:57.749Z] [ERROR] Failed to execute commands for kiegroup/kogito-runtimes
[2023-07-27T12:15:57.749Z] [ERROR] Failed to execute mvn dependency:tree clean -Dfull install -Denforcer.skip -s /home/jenkins/workspace/KIE/kogito/main/pullrequest.quarkus-3/kogito-runtimes.quarkus-3.kogito-runtimes@tmp/config9815457899479538130tmp -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 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B :
[2023-07-27T12:15:57.749Z] [ERROR] The process '/opt/tools/apache-maven-3.9.1/bin/mvn' failed with exit code 1
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] }
[2023-07-27T12:15:58.081Z] Deleting 1 temporary files
[Pipeline] // configFileProvider
[Pipeline] }
[Pipeline] // script
Post stage
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-07-27T12:15:58.638Z] + find . -type d -name node_modules -exec rm -rf '{}' ';'
[Pipeline] junit
[2023-07-27T12:16:05.172Z] Recording test results
[2023-07-27T12:16:10.218Z] [Checks API] No suitable checks publisher found.
[Pipeline] archiveArtifacts
[2023-07-27T12:16:10.238Z] Archiving artifacts
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-07-27T12:16:11.465Z] + rm -rf console.log
[Pipeline] sh
[2023-07-27T12:16:11.755Z] + 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.quarkus-3/job/kogito-runtimes.quarkus-3.kogito-runtimes/48/consoleText
[2023-07-27T12:16:11.755Z] + tail -n 300

@radtriste
Copy link
Contributor Author

jenkins rewrite quarkus-3

@kie-ci1
Copy link

kie-ci1 commented Jul 27, 2023

Rewrite quarkus-3 before.sh patch file job #9 was: FAILURE
Possible explanation: Pipeline failure or project build failure

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/kogito/job/main/job/pullrequest.quarkus-3/job/kogito-runtimes.rewrite/9/display/redirect
See console log:

Console Logs [2023-07-27T12:56:47.890Z] [INFO] ------------------------------------------------------------------------
[2023-07-27T12:56:47.890Z] [INFO] BUILD FAILURE
[2023-07-27T12:56:47.890Z] [INFO] ------------------------------------------------------------------------
[2023-07-27T12:56:47.890Z] [INFO] Total time: 16:13 min
[2023-07-27T12:56:47.890Z] [INFO] Finished at: 2023-07-27T08:56:34-04:00
[2023-07-27T12:56:47.890Z] [INFO] ------------------------------------------------------------------------
[2023-07-27T12:56:47.890Z] [ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.6.0:exec (pip-install) on project kogito-addons-quarkus-serverless-workflow-python-integration-tests: Command execution failed.: Process exited with an error: 1 (Exit value: 1) -> [Help 1]
[2023-07-27T12:56:47.890Z] [ERROR]
[2023-07-27T12:56:47.890Z] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[2023-07-27T12:56:47.890Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2023-07-27T12:56:47.890Z] [ERROR]
[2023-07-27T12:56:47.890Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2023-07-27T12:56:47.890Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[2023-07-27T12:56:47.890Z] [ERROR]
[2023-07-27T12:56:47.890Z] [ERROR] After correcting the problems, you can resume the build with the command
[2023-07-27T12:56:47.890Z] [ERROR] mvn -rf :kogito-addons-quarkus-serverless-workflow-python-integration-tests
[Pipeline] }
[2023-07-27T12:56:47.919Z] Deleting 1 temporary files
[Pipeline] // configFileProvider
[Pipeline] }
[Pipeline] // dir
[Pipeline] }
[Pipeline] // script
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Push changes)
Stage "Push changes" skipped due to earlier failure(s)
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Declarative: Post Actions)
[Pipeline] script
[Pipeline] {
[Pipeline] cleanWs
[2023-07-27T12:56:48.351Z] [WS-CLEANUP] Deleting project workspace...
[2023-07-27T12:56:48.351Z] [WS-CLEANUP] Deferred wipeout is used...
[2023-07-27T12:56:48.359Z] [WS-CLEANUP] done
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-07-27T12:56:48.754Z] + 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.quarkus-3/job/kogito-runtimes.rewrite/9/api/json
[Pipeline] readJSON
[Pipeline] sh
[2023-07-27T12:56:49.091Z] + 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.quarkus-3/job/kogito-runtimes.rewrite/9/consoleText
[2023-07-27T12:56:49.091Z] + tail -n 50

@radtriste
Copy link
Contributor Author

jenkins rewrite quarkus-3

@kie-ci1
Copy link

kie-ci1 commented Jul 27, 2023

Rewrite quarkus-3 before.sh patch file job #10 was: FAILURE
Possible explanation: Pipeline failure or project build failure

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/kogito/job/main/job/pullrequest.quarkus-3/job/kogito-runtimes.rewrite/10/display/redirect
See console log:

Console Logs [2023-07-27T13:34:32.828Z] [INFO] ------------------------------------------------------------------------
[2023-07-27T13:34:32.828Z] [INFO] BUILD FAILURE
[2023-07-27T13:34:32.828Z] [INFO] ------------------------------------------------------------------------
[2023-07-27T13:34:32.828Z] [INFO] Total time: 16:30 min
[2023-07-27T13:34:32.828Z] [INFO] Finished at: 2023-07-27T09:34:27-04:00
[2023-07-27T13:34:32.828Z] [INFO] ------------------------------------------------------------------------
[2023-07-27T13:34:32.828Z] [ERROR] Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.6.0:exec (pip-install) on project kogito-addons-quarkus-serverless-workflow-python-integration-tests: Command execution failed.: Process exited with an error: 1 (Exit value: 1) -> [Help 1]
[2023-07-27T13:34:32.828Z] [ERROR]
[2023-07-27T13:34:32.828Z] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[2023-07-27T13:34:32.828Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2023-07-27T13:34:32.828Z] [ERROR]
[2023-07-27T13:34:32.828Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2023-07-27T13:34:32.828Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[2023-07-27T13:34:32.828Z] [ERROR]
[2023-07-27T13:34:32.828Z] [ERROR] After correcting the problems, you can resume the build with the command
[2023-07-27T13:34:32.828Z] [ERROR] mvn -rf :kogito-addons-quarkus-serverless-workflow-python-integration-tests
[Pipeline] }
[2023-07-27T13:34:32.856Z] Deleting 1 temporary files
[Pipeline] // configFileProvider
[Pipeline] }
[Pipeline] // dir
[Pipeline] }
[Pipeline] // script
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Push changes)
Stage "Push changes" skipped due to earlier failure(s)
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Declarative: Post Actions)
[Pipeline] script
[Pipeline] {
[Pipeline] cleanWs
[2023-07-27T13:34:33.226Z] [WS-CLEANUP] Deleting project workspace...
[2023-07-27T13:34:33.226Z] [WS-CLEANUP] Deferred wipeout is used...
[2023-07-27T13:34:33.233Z] [WS-CLEANUP] done
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-07-27T13:34:33.626Z] + 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.quarkus-3/job/kogito-runtimes.rewrite/10/api/json
[Pipeline] readJSON
[Pipeline] sh
[2023-07-27T13:34:33.942Z] + 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.quarkus-3/job/kogito-runtimes.rewrite/10/consoleText
[2023-07-27T13:34:33.942Z] + tail -n 50

@kie-ci3
Copy link
Contributor

kie-ci3 commented Jul 27, 2023

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

Reproducer

export BUILD_MVN_OPTS_CURRENT=
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/kogito-pipelines/main/.ci/pull-request-config.yaml' -o 'bc' -p kiegroup/kogito-apps -u https://github.com/kiegroup/kogito-runtimes/pull/3141 --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.downstream.kogito-apps/2935/display/redirect

Test results:

  • PASSED: 2769
  • FAILED: 1

Those are the test failures:

org.kie.kogito.index.ProcessDataIndexInfinispanIT.testProcessInstanceEvents Assertion condition defined as a lambda expression in org.kie.kogito.index.AbstractProcessDataIndexIT 1 expectation failed.
JSON path data.Approvals.size() doesn't match.
Expected: is <1>
Actual: <0>
within 30 seconds.

@kie-ci1
Copy link

kie-ci1 commented Jul 28, 2023

Rewrite quarkus-3 before.sh patch file job #12 was: FAILURE
Possible explanation: Pipeline failure or project build failure

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/kogito/job/main/job/pullrequest.quarkus-3/job/kogito-runtimes.rewrite/12/display/redirect
See console log:

Console Logs [2023-07-28T07:36:51.629Z] Cloning repository https://github.com/kiegroup/drools.git
[2023-07-28T07:36:51.629Z] > git init /home/jenkins/workspace/KIE/kogito/main/pullrequest.quarkus-3/kogito-runtimes.rewrite/drools # timeout=10
[2023-07-28T07:36:51.635Z] Fetching upstream changes from https://github.com/kiegroup/drools.git
[2023-07-28T07:36:51.635Z] > git --version # timeout=10
[2023-07-28T07:36:51.638Z] > git --version # 'git version 2.39.3'
[2023-07-28T07:36:51.638Z] using GIT_ASKPASS to set credentials PSSWD: kie-ci service account with access to jboss-integration private github space
[2023-07-28T07:36:51.639Z] > git fetch --tags --force --progress -- https://github.com/kiegroup/drools.git +refs/heads/*:refs/remotes/origin/* # timeout=10
[2023-07-28T07:37:05.887Z] Avoid second fetch
[2023-07-28T07:37:05.893Z] Checking out Revision 86477e967df1d25b43b090e7570606daf5d515c2 (origin/main)
[2023-07-28T07:37:05.092Z] > git config remote.origin.url https://github.com/kiegroup/drools.git # timeout=10
[2023-07-28T07:37:05.096Z] > git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10
[2023-07-28T07:37:05.106Z] > git rev-parse origin/main^{commit} # timeout=10
[2023-07-28T07:37:05.112Z] > git config core.sparsecheckout # timeout=10
[2023-07-28T07:37:05.116Z] > git checkout -f 86477e967df1d25b43b090e7570606daf5d515c2 # timeout=10
[2023-07-28T07:37:06.906Z] Commit message: "[Quarkus 3] Updated rewrite data"
[2023-07-28T07:37:06.126Z] > git rev-list --no-walk dbb70b29ce65bcc8ef15b77e65e1b06f2e1e60bd # timeout=10
[Pipeline] }
[Pipeline] // dir
[Pipeline] }
[Pipeline] // script
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Generate rewrite patch)
Stage "Generate rewrite patch" skipped due to earlier failure(s)
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Push changes)
Stage "Push changes" skipped due to earlier failure(s)
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Declarative: Post Actions)
[Pipeline] script
[Pipeline] {
[Pipeline] cleanWs
[2023-07-28T07:37:07.503Z] [WS-CLEANUP] Deleting project workspace...
[2023-07-28T07:37:07.503Z] [WS-CLEANUP] Deferred wipeout is used...
[2023-07-28T07:37:07.509Z] [WS-CLEANUP] done
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-07-28T07:37:07.890Z] + 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.quarkus-3/job/kogito-runtimes.rewrite/12/api/json
[Pipeline] readJSON
[Pipeline] sh

@radtriste
Copy link
Contributor Author

jenkins rewrite quarkus-3

@kie-ci1
Copy link

kie-ci1 commented Jul 28, 2023

Rewrite quarkus-3 before.sh patch file job #13 was: FAILURE
Possible explanation: Pipeline failure or project build failure

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/kogito/job/main/job/pullrequest.quarkus-3/job/kogito-runtimes.rewrite/13/display/redirect
See console log:

Console Logs [2023-07-28T08:07:59.252Z] [INFO] Finished at: 2023-07-28T04:07:59-04:00
[2023-07-28T08:07:59.252Z] [INFO] ------------------------------------------------------------------------
[2023-07-28T08:07:59.252Z] [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:testCompile (default-testCompile) on project kie-pmml-compiler-api: Compilation failure
[2023-07-28T08:07:59.252Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest.quarkus-3/kogito-runtimes.rewrite/drools/kie-pmml-trusty/kie-pmml-compiler/kie-pmml-compiler-api/src/test/java/org/kie/pmml/compiler/api/mocks/TestModel.java:[29,8] org.kie.pmml.compiler.api.mocks.TestModel is not abstract and does not override abstract method requireMiningSchema() in org.dmg.pmml.Model
[2023-07-28T08:07:59.252Z] [ERROR] -> [Help 1]
[2023-07-28T08:07:59.252Z] [ERROR]
[2023-07-28T08:07:59.252Z] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[2023-07-28T08:07:59.252Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2023-07-28T08:07:59.252Z] [ERROR]
[2023-07-28T08:07:59.252Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2023-07-28T08:07:59.252Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[2023-07-28T08:07:59.252Z] [ERROR]
[2023-07-28T08:07:59.252Z] [ERROR] After correcting the problems, you can resume the build with the command
[2023-07-28T08:07:59.252Z] [ERROR] mvn -rf :kie-pmml-compiler-api
[Pipeline] }
[Pipeline] // dir
[Pipeline] }
[Pipeline] // script
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Generate rewrite patch)
Stage "Generate rewrite patch" skipped due to earlier failure(s)
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Push changes)
Stage "Push changes" skipped due to earlier failure(s)
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Declarative: Post Actions)
[Pipeline] script
[Pipeline] {
[Pipeline] cleanWs
[2023-07-28T08:07:59.885Z] [WS-CLEANUP] Deleting project workspace...
[2023-07-28T08:07:59.885Z] [WS-CLEANUP] Deferred wipeout is used...
[2023-07-28T08:07:59.891Z] [WS-CLEANUP] done
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-07-28T08:08:00.300Z] + 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.quarkus-3/job/kogito-runtimes.rewrite/13/api/json
[Pipeline] readJSON
[Pipeline] sh
[2023-07-28T08:08:00.874Z] + 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.quarkus-3/job/kogito-runtimes.rewrite/13/consoleText
[2023-07-28T08:08:00.874Z] + tail -n 50

@kie-ci3
Copy link
Contributor

kie-ci3 commented Jul 28, 2023

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

Reproducer

export BUILD_MVN_OPTS_CURRENT=
build-chain build cross_pr -f 'https://raw.githubusercontent.com/kiegroup/kogito-pipelines/main/.ci/pull-request-config.yaml' -o 'bc' -p kiegroup/kogito-apps -u https://github.com/kiegroup/kogito-runtimes/pull/3141 --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.downstream.kogito-apps/2936/display/redirect

Test results:

  • PASSED: 2769
  • FAILED: 1

Those are the test failures:

org.kie.kogito.security.KeycloakSecurityCommonsServiceIT.meTest java.lang.RuntimeException: io.quarkus.builder.BuildException: Build failure: Build failed due to errors
[error]: Build step io.quarkus.oidc.deployment.devservices.keycloak.KeycloakDevServicesProcessor#startKeycloakContainer threw an exception: java.lang.RuntimeException: org.testcontainers.containers.ContainerLaunchException: Container startup failed
at io.quarkus.oidc.deployment.devservices.keycloak.KeycloakDevServicesProcessor.startKeycloakContainer(KeycloakDevServicesProcessor.java:247)
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.oidc.deployment.devservices.keycloak.KeycloakDevServicesProcessor.lambda$startContainer$4(KeycloakDevServicesProcessor.java:372)
at java.base/java.util.Optional.orElseGet(Optional.java:369)
at io.quarkus.oidc.deployment.devservices.keycloak.KeycloakDevServicesProcessor.startContainer(KeycloakDevServicesProcessor.java:397)
at io.quarkus.oidc.deployment.devservices.keycloak.KeycloakDevServicesProcessor.startKeycloakContainer(KeycloakDevServicesProcessor.java:195)
... 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: Timed out waiting for log output matching '.*Keycloak.*started.*'
at org.testcontainers.containers.wait.strategy.LogMessageWaitStrategy.waitUntilReady(LogMessageWaitStrategy.java:47)
at org.testcontainers.containers.wait.strategy.AbstractWaitStrategy.waitUntilReady(AbstractWaitStrategy.java:52)
at org.testcontainers.containers.GenericContainer.waitUntilContainerStarted(GenericContainer.java:953)
at org.testcontainers.containers.GenericContainer.tryStart(GenericContainer.java:485)
... 19 more

@radtriste
Copy link
Contributor Author

jenkins rewrite quarkus-3

@kie-ci1
Copy link

kie-ci1 commented Jul 28, 2023

Rewrite quarkus-3 before.sh patch file job #14 was: FAILURE
Possible explanation: Pipeline failure or project build failure

Please look here: https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/kogito/job/main/job/pullrequest.quarkus-3/job/kogito-runtimes.rewrite/14/display/redirect
See console log:

Console Logs [2023-07-28T13:41:17.938Z] [INFO] Finished at: 2023-07-28T09:41:16-04:00
[2023-07-28T13:41:17.938Z] [INFO] ------------------------------------------------------------------------
[2023-07-28T13:41:17.938Z] [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:testCompile (default-testCompile) on project kie-pmml-compiler-core: Compilation failure
[2023-07-28T13:41:17.938Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest.quarkus-3/kogito-runtimes.rewrite/drools/kie-pmml-trusty/kie-pmml-compiler/kie-pmml-compiler-core/src/test/java/org/kie/pmml/compiler/testingutils/TestingModel.java:[26,8] org.kie.pmml.compiler.testingutils.TestingModel is not abstract and does not override abstract method requireMiningSchema() in org.dmg.pmml.Model
[2023-07-28T13:41:17.938Z] [ERROR] -> [Help 1]
[2023-07-28T13:41:17.938Z] [ERROR]
[2023-07-28T13:41:17.938Z] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[2023-07-28T13:41:17.938Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2023-07-28T13:41:17.938Z] [ERROR]
[2023-07-28T13:41:17.938Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2023-07-28T13:41:17.938Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[2023-07-28T13:41:17.938Z] [ERROR]
[2023-07-28T13:41:17.938Z] [ERROR] After correcting the problems, you can resume the build with the command
[2023-07-28T13:41:17.938Z] [ERROR] mvn -rf :kie-pmml-compiler-core
[Pipeline] }
[Pipeline] // dir
[Pipeline] }
[Pipeline] // script
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Generate rewrite patch)
Stage "Generate rewrite patch" skipped due to earlier failure(s)
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Push changes)
Stage "Push changes" skipped due to earlier failure(s)
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Declarative: Post Actions)
[Pipeline] script
[Pipeline] {
[Pipeline] cleanWs
[2023-07-28T13:41:18.609Z] [WS-CLEANUP] Deleting project workspace...
[2023-07-28T13:41:18.610Z] [WS-CLEANUP] Deferred wipeout is used...
[2023-07-28T13:41:18.615Z] [WS-CLEANUP] done
[Pipeline] }
[Pipeline] // script
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2023-07-28T13:41:19.134Z] + 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.quarkus-3/job/kogito-runtimes.rewrite/14/api/json
[Pipeline] readJSON
[Pipeline] sh
[2023-07-28T13:41:19.463Z] + 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.quarkus-3/job/kogito-runtimes.rewrite/14/consoleText
[2023-07-28T13:41:19.463Z] + tail -n 50

@radtriste
Copy link
Contributor Author

jenkins rewrite quarkus-3

@sonarcloud
Copy link

sonarcloud bot commented Jul 31, 2023

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

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

No Coverage information No Coverage information
No Duplication information No Duplication information

@kie-ci3
Copy link
Contributor

kie-ci3 commented Jul 31, 2023

(tests) - kogito-runtimes job #2958 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/3141 --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/2958/display/redirect

Test results:

  • PASSED: 3346
  • FAILED: 1

Those are the test failures:

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

@radtriste
Copy link
Contributor Author

jenkins run quarkus-3

@kie-ci3
Copy link
Contributor

kie-ci3 commented Jul 31, 2023

(quarkus-3) - kogito-runtimes job #49 was: UNSTABLE
Possible explanation: This should be test failures

Reproducer

export BUILD_MVN_OPTS_CURRENT=-T 1C
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/3141 --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.quarkus-3/job/kogito-runtimes.quarkus-3.kogito-runtimes/49/display/redirect

Test results:

  • PASSED: 3340
  • FAILED: 7

Those are the test failures:

org.kie.kogito.integrationtests.springboot.OASTest.testOASisValid
Expecting empty but was: ["Unable to read location `http://localhost:44115/v3/api-docs`"]
org.kie.kogito.integrationtests.springboot.OASTest.testOASisSwaggerUICompatible
Expecting empty but was: ["Unable to read location `http://localhost:44115/v3/api-docs`"]
org.kie.kogito.integrationtests.springboot.PMMLRegressionTest.testEvaluateLinRegResult 1 expectation failed.
Expected status code <200> but was <404>.
org.kie.kogito.integrationtests.springboot.PMMLTreeTest.testEvaluateSampleMineResult 1 expectation failed.
Expected status code <200> but was <404>.
org.kie.kogito.integrationtests.springboot.PingPongMessageTest.testPingPongBetweenProcessInstances Assertion condition defined as a org.kie.kogito.integrationtests.springboot.PingPongMessageTest 1 expectation failed.
Expected status code <200> but was <404>.
within 10 seconds.
org.kie.kogito.integrationtests.springboot.ProcessSvgAddonTest.testGetSvgProcessInstances javax/servlet/DispatcherType
org.kie.kogito.integrationtests.springboot.ProcessSvgAddonTest.testInvalidSvgProcessInstances Could not initialize class com.github.tomakehurst.wiremock.jetty9.JettyHttpServerFactory

@radtriste
Copy link
Contributor Author

test failures will be solved later

@radtriste radtriste merged commit 859978a into apache:main Jul 31, 2023
9 checks passed
@radtriste radtriste deleted the quarkus_3_fixes branch July 31, 2023 11:55
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.

3 participants