incubator-kie-drools icon indicating copy to clipboard operation
incubator-kie-drools copied to clipboard

[DROOLS-6290] NamedConsequences inside OR

Open tkobayas opened this issue 3 years ago • 3 comments

JIRA: https://issues.redhat.com/browse/DROOLS-6290

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

  • a full downstream build please add comment: Jenkins run fdb

  • a compile downstream build please add comment: Jenkins run cdb

  • a full production downstream build please add comment: Jenkins execute product fdb

  • an upstream build please add comment: Jenkins run upstream

tkobayas avatar May 25 '21 10:05 tkobayas

Kudos, SonarCloud 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

sonarcloud[bot] avatar May 25 '21 11:05 sonarcloud[bot]

@mariofusco @lucamolteni I'm afraid that I'm not familiar with the manner to enhance View.

Here, NamedConsequencesTest.testNamedConsequencesInsideOR1()'s rule:

when
    ( $a: Cheese ( type == "stilton" ) do[t1]
    or
    $b: Cheese ( type == "gorgonzola" ) )
    $c: Cheese ( type == "cheddar" )
then

generates a pattern dsl like:

org.drools.model.Rule rule = D.rule("R1").build(D.or(D.and(D.and(D.pattern(var_$a).expr("GENERATED_599BA04651931CAABD25A71FE0419AA8",
                                                                                                defaultpkg.P55.LambdaPredicate55D5662472CE63830E191E94C7D5519D.INSTANCE,
                                                                                                D.alphaIndexedBy(java.lang.String.class,
                                                                                                                 org.drools.model.Index.ConstraintType.EQUAL,
                                                                                                                 DomainClassesMetadataF99927F2ECC2D34C8A126873034EB7D7.org_drools_modelcompiler_domain_Cheese_Metadata_INSTANCE.getPropertyIndex("type"),
                                                                                                                 defaultpkg.P62.LambdaExtractor62D8A9CE78D1C963AAE11C575CCBE6A0.INSTANCE,
                                                                                                                 "stilton"),
                                                                                                D.reactOn("type")),
                                                                         D.on(var_results,
                                                                              var_$a).execute(defaultpkg.P8B.LambdaConsequence8B993021D142329A9F0224AEB1CF5C19.INSTANCE))),
                                                             D.and(D.pattern(var_$b).expr("GENERATED_D9556650C191D96898FE5A3753A8937A",
                                                                                          defaultpkg.PED.LambdaPredicateED0A5A9997D6FE61975A403CC646DF1E.INSTANCE,
                                                                                          D.alphaIndexedBy(java.lang.String.class,
                                                                                                           org.drools.model.Index.ConstraintType.EQUAL,
                                                                                                           DomainClassesMetadataF99927F2ECC2D34C8A126873034EB7D7.org_drools_modelcompiler_domain_Cheese_Metadata_INSTANCE.getPropertyIndex("type"),
                                                                                                           defaultpkg.P62.LambdaExtractor62D8A9CE78D1C963AAE11C575CCBE6A0.INSTANCE,
                                                                                                           "gorgonzola"),
                                                                                          D.reactOn("type")))),

in essence,

D.and(D.pattern(var_$a).expr(...), D.on(...).execute(...))

which is not accepted by https://github.com/kiegroup/drools/blob/master/drools-model/drools-canonical-model/src/main/java/org/drools/model/DSL.java#L321-L326

So I introduced ConsequenceViewItem and a new signature for add.

    public static ViewItem and(ViewItemBuilder<?> expression, AbstractValidBuilder<?> namedConsequence) {
        return new ConsequenceViewItem(expression.get(), namedConsequence.get());
    }

which combines a View and a Consequence. I think I cannot use ConditionalConsequenceBuilder for this purpose because ConditionalConsequenceBuilder takes ExprViewItem, not PatternDef.

Then ViewPatternBuilder.ruleItem2Condition() creates CompositePatterns which combines PatternImpl and ConditionalNamedConsequenceImpl (which is always executed if the combined Pattern is matched).

        if (ruleItem instanceof ConsequenceViewItem) {
            ConsequenceViewItem conseqenceView = (ConsequenceViewItem) ruleItem;
            List<Condition> conditions = new ArrayList<>();
            ViewItem expr = conseqenceView.getExpression();
            conditions.add(ruleItem2Condition(expr, consequences));
            ConditionalNamedConsequenceImpl conditionalNamedConsequenceImpl = new ConditionalNamedConsequenceImpl(null, // null expr results in LambdaEvalExpression.EMPTY which is "always true"
                                                                                                                  createNamedConsequence(consequences, conseqenceView.getNamedConsequence()),
                                                                                                                  null);
            conditions.add(conditionalNamedConsequenceImpl);
            return new CompositePatterns(Condition.Type.AND, conditions);
        }

Please let me know if I'm on the right track or there is a better way to implement this scenario. And any suggestions (e.g. ConsequenceViewItem is a good name?)

Thanks!

tkobayas avatar May 26 '21 04:05 tkobayas

@tkobayas I see the problem, but it is a complex thing and I'll need a bit of time to investigate this issue (that I don't have right now). Since I don't think that this is a high priority problem please leave it for now. I'll be back on this asap.

mariofusco avatar May 26 '21 07:05 mariofusco

Hi, this PR is now more than a year old. Is it still relevant please?

baldimir avatar Aug 19 '22 07:08 baldimir

(tests) - kogito-runtimes job #412 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/job/drools.tests.downstream.kogito-runtimes/412/display/redirect See console log:

Console Logs [2022-08-19T07:50:10.974Z] [INFO] Drools :: Legacy Test Util ......................... SUCCESS [ 0.291 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: Beliefs .................................. SUCCESS [ 0.868 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: Serialization :: Protobuf ................ SUCCESS [ 4.299 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools Persistence projects ........................ SUCCESS [ 0.018 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: Persistence :: API ....................... SUCCESS [ 0.159 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: Persistence :: JPA ....................... SUCCESS [ 2.656 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: Traits ................................... SUCCESS [ 2.849 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: Verifier ................................. SUCCESS [ 0.022 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools Workbench - Verifier Api .................... SUCCESS [ 0.151 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: Verifier DRL ............................. SUCCESS [ 1.650 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools Workbench - Verifier Core ................... SUCCESS [ 1.591 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools examples .................................... SUCCESS [ 1.327 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: CI .......................................... SUCCESS [ 1.233 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: Engine :: Classic ........................ SUCCESS [ 0.159 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: API examples ............................. SUCCESS [ 0.032 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: API examples :: Default KieSession ....... SUCCESS [ 0.377 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: API examples :: Named KieSession ......... SUCCESS [ 0.278 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: API examples :: KieBase Inclusion ........ SUCCESS [ 0.149 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: API examples :: Default KieSession From File SUCCESS [ 0.203 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: API examples :: Named KieSession from File SUCCESS [ 0.288 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: API examples :: KieModule from Multiple Files SUCCESS [ 0.268 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: examples :: KieFileSystemExample ......... SUCCESS [ 0.311 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: API examples :: KieModuleModel Example ... SUCCESS [ 0.224 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: API examples :: KieContainer from KieRepo SUCCESS [ 0.243 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: API examples :: Multiple KieBases ........ SUCCESS [ 0.223 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: API examples :: Reactive KieSession ...... SUCCESS [ 0.226 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: Test Coverage ............................ SUCCESS [ 0.021 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: Test Coverage :: Standalone reproducers .. SUCCESS [ 0.033 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Parent SUCCESS [ 0.063 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Domain SUCCESS [ 0.220 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: KJar SUCCESS [ 0.061 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Tests SUCCESS [ 0.241 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Parent SUCCESS [ 0.024 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Domain SUCCESS [ 0.132 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: KJar SUCCESS [ 0.102 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Tests SUCCESS [ 0.333 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: Test Coverage :: Test Suite .............. SKIPPED
[2022-08-19T07:50:10.974Z] [INFO] Drools :: Engine ................................... SKIPPED
[2022-08-19T07:50:10.974Z] [INFO] Drools :: Alpha Network Compiler ................... SKIPPED
[2022-08-19T07:50:10.974Z] [INFO] Drools :: Test Coverage :: Compiler integration tests SKIPPED
[2022-08-19T07:50:10.974Z] [INFO] Drools :: Test Coverage :: Integration tests without mvel SKIPPED
[2022-08-19T07:50:10.974Z] [INFO] Drools :: Test Coverage :: Integration tests without TMS SKIPPED
[2022-08-19T07:50:10.974Z] [INFO] Drools :: Test Coverage :: Integration tests without xml SKIPPED
[2022-08-19T07:50:10.974Z] [INFO] Drools :: Scenario Simulation Parent ............... SUCCESS [ 0.018 s]
[2022-08-19T07:50:10.974Z] [INFO] Drools :: Scenario Simulation API .................. SUCCESS [ 0.578 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: Decision Model Notation ..................... SUCCESS [ 0.018 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: Decision Model Notation :: Model ............ SUCCESS [ 1.241 s]
[2022-08-19T07:50:10.974Z] [INFO] Efesto ............................................. SUCCESS [ 2.813 s]
[2022-08-19T07:50:10.974Z] [INFO] Efesto :: Core ..................................... SUCCESS [ 0.039 s]
[2022-08-19T07:50:10.974Z] [INFO] Efesto :: Common :: Api ............................ SUCCESS [ 1.991 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: Decision Model Notation :: API .............. SUCCESS [ 0.263 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: Decision Model Notation :: FEEL ............. SUCCESS [ 8.987 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: Decision Model Notation :: Backend .......... SUCCESS [ 1.487 s]
[2022-08-19T07:50:10.974Z] [INFO] Efesto :: Runtime :: Manager ....................... SUCCESS [ 0.045 s]
[2022-08-19T07:50:10.974Z] [INFO] Efesto :: Runtime :: Manager :: Api ................ SUCCESS [ 0.998 s]
[2022-08-19T07:50:10.974Z] [INFO] Efesto :: Compilation :: Manager ................... SUCCESS [ 0.066 s]
[2022-08-19T07:50:10.974Z] [INFO] Efesto :: Compilation :: Manager :: Api ............ SUCCESS [ 0.167 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML ........................................ SUCCESS [ 0.093 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: API ................................. SUCCESS [ 1.432 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Commons ............................. SUCCESS [ 2.106 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Evaluator ........................... SUCCESS [ 0.053 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Evaluator :: API .................... SUCCESS [ 0.234 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Evaluator :: Core ................... SUCCESS [ 1.245 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Compiler ............................ SUCCESS [ 0.098 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Compiler :: API ..................... SUCCESS [ 1.555 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Compiler :: Commons ................. SUCCESS [ 2.726 s]
[2022-08-19T07:50:10.974Z] [INFO] Efesto :: Compilation :: Manager :: Core ........... SUCCESS [ 0.618 s]
[2022-08-19T07:50:10.974Z] [INFO] Efesto :: Common :: Utils .......................... SUCCESS [ 0.175 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Compiler :: Core .................... SUCCESS [ 0.789 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Evaluator :: Utils .................. SUCCESS [ 0.125 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Models .............................. SUCCESS [ 0.028 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Models :: Tree ...................... SUCCESS [ 0.031 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Models :: Tree :: Model ............. SUCCESS [ 0.516 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Models :: Tree :: Compiler .......... SUCCESS [ 1.036 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Models :: Tree :: Evaluator ......... SUCCESS [ 0.508 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: Decision Model Notation :: Core ............. SKIPPED
[2022-08-19T07:50:10.974Z] [INFO] Drools :: Scenario Simulation Backend .............. SKIPPED
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Models :: Drools .................... SUCCESS [ 0.308 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Models :: Drools :: Common .......... SKIPPED
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Models :: Regression ................ SUCCESS [ 0.043 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Models :: Regression :: Model ....... SUCCESS [ 0.610 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Models :: Regression :: Compiler .... SUCCESS [ 1.424 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Models :: Regression :: Evaluator ... SUCCESS [ 0.507 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Models :: Scorecard ................. SUCCESS [ 0.031 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Model ........ SUCCESS [ 0.604 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Compiler ..... SUCCESS [ 0.948 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Evaluator .... SUCCESS [ 0.462 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Models :: Mining .................... SUCCESS [ 0.026 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Models :: Mining :: Model ........... SUCCESS [ 0.611 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Models :: Mining :: Compiler ........ SKIPPED
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Models :: Mining :: Evaluator ....... SUCCESS [ 0.610 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Models :: Clustering ................ SUCCESS [ 0.030 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Models :: Clustering :: Model ....... SUCCESS [ 0.557 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Models :: Clustering :: Compiler .... SUCCESS [ 0.810 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Models :: Clustering :: Evaluator ... SUCCESS [ 0.461 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Dependencies ........................ SKIPPED
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree ............ SUCCESS [ 0.035 s]
[2022-08-19T07:50:10.974Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Model ... SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Compiler SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Evaluator SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard ....... SUCCESS [ 0.023 s]
[2022-08-19T07:50:10.975Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Model SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Compiler SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Evaluator SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] KIE :: DRL ......................................... SUCCESS [ 0.014 s]
[2022-08-19T07:50:10.975Z] [INFO] KIE :: DRL :: Compilation :: Common ................ SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] KIE :: DRL :: Runtime :: Common .................... SUCCESS [ 0.193 s]
[2022-08-19T07:50:10.975Z] [INFO] KIE :: DRL :: Implementations ...................... SUCCESS [ 0.014 s]
[2022-08-19T07:50:10.975Z] [INFO] KIE :: DRL :: MapInput ............................. SUCCESS [ 0.013 s]
[2022-08-19T07:50:10.975Z] [INFO] KIE :: DRL :: MapInput :: Runtime .................. SUCCESS [ 0.345 s]
[2022-08-19T07:50:10.975Z] [INFO] Efesto :: Runtime :: Manager :: Core ............... SUCCESS [ 0.359 s]
[2022-08-19T07:50:10.975Z] [INFO] Drools :: Scenario Simulation Integration Test ..... SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] Drools :: Metric Analysis .......................... SUCCESS [ 0.498 s]
[2022-08-19T07:50:10.975Z] [INFO] Drools :: Impact Analysis .......................... SUCCESS [ 0.018 s]
[2022-08-19T07:50:10.975Z] [INFO] Drools :: Impact Analysis :: Model ................. SUCCESS [ 0.103 s]
[2022-08-19T07:50:10.975Z] [INFO] Drools :: Impact Analysis :: Parser ................ SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] Drools :: Impact Analysis Graph .................... SUCCESS [ 0.017 s]
[2022-08-19T07:50:10.975Z] [INFO] Drools :: Impact Analysis Graph :: Common .......... SUCCESS [ 0.129 s]
[2022-08-19T07:50:10.975Z] [INFO] Drools :: Impact Analysis Graph :: Graphviz ........ SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] Drools :: Impact Analysis :: Integration Tests ..... SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] Drools :: ReteDiagram .............................. SUCCESS [ 0.836 s]
[2022-08-19T07:50:10.975Z] [INFO] KIE :: Efesto :: Dependencies ...................... SUCCESS [ 0.046 s]
[2022-08-19T07:50:10.975Z] [INFO] KIE :: DRL :: KieSession :: Local .................. SUCCESS [ 0.018 s]
[2022-08-19T07:50:10.975Z] [INFO] KIE :: DRL :: KieSession :: Local :: Runtime ....... SUCCESS [ 0.191 s]
[2022-08-19T07:50:10.975Z] [INFO] KIE :: DRL :: API .................................. SUCCESS [ 0.145 s]
[2022-08-19T07:50:10.975Z] [INFO] KIE :: DRL :: Tests ................................ SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] KIE :: Decision Model Notation :: Internal utils for Validation bootstrap SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] KIE :: Decision Model Notation :: Validation ....... SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] KIE :: Decision Model Notation :: FEEL DMN GWT FUNCTIONS SUCCESS [ 3.092 s]
[2022-08-19T07:50:10.975Z] [INFO] KIE :: Decision Model Notation :: FEEL DMN GWT ..... SUCCESS [ 2.043 s]
[2022-08-19T07:50:10.975Z] [INFO] KIE :: Decision Model Notation :: OpenAPI (OAS) utilities SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] KIE :: Decision Model Notation :: TCK .............. SUCCESS [ 0.016 s]
[2022-08-19T07:50:10.975Z] [INFO] KIE :: Decision Model Notation :: Legacy tests (previous DMN versions) SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] KIE :: Decision Model Notation :: Trisotech extensions support SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] KIE :: Decision Model Notation :: Signavio extensions support SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] KiE :: Decision Model Notation - PMML Tests :: Parent SUCCESS [ 0.014 s]
[2022-08-19T07:50:10.975Z] [INFO] KiE :: Decision Model Notation - PMML Tests ........ SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] KiE :: Decision Model Notation - PMML Trusty Tests . SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] KIE :: Decision Model Notation :: xls2dmn CLI Utility SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] KIE :: Decision Model Notation :: JSR-223 JQ ScriptEngine SUCCESS [ 0.474 s]
[2022-08-19T07:50:10.975Z] [INFO] KIE :: Decision Model Notation :: Core JSR-223 ..... SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn parent SUCCESS [ 0.018 s]
[2022-08-19T07:50:10.975Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn utilities SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn CLI .. SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] KIE :: PMML :: Models :: Tests ..................... SUCCESS [ 0.428 s]
[2022-08-19T07:50:10.975Z] [INFO] KIE :: PMML :: Models :: Regression :: Tests ....... SUCCESS [ 0.565 s]
[2022-08-19T07:50:10.975Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Tests ... SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Tests SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] KIE :: PMML :: Models :: Mining :: Tests ........... SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] KIE :: PMML :: Models :: Tree :: Tests ............. SUCCESS [ 0.591 s]
[2022-08-19T07:50:10.975Z] [INFO] KIE :: PMML :: Models :: Clustering :: Tests ....... SUCCESS [ 0.452 s]
[2022-08-19T07:50:10.975Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Tests ........ SUCCESS [ 0.552 s]
[2022-08-19T07:50:10.975Z] [INFO] KIE :: Maven Plugin ................................ SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] KIE :: Maven Archetypes ............................ SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] KIE :: Drools Maven Archetype ...................... SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] KIE :: Drools DMN engine Maven Archetype ........... SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] KIE :: Drools Maven Archetype with Executable Model and RuleUnit SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] KIE :: Drools Maven Archetype with Executable Model and traditional rule style SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] KIE :: KJAR Archetype .............................. SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] KIE :: Model Archetype ............................. SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] KIE :: Service Spring Boot Archetype ............... SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] Drools :: Quarkus Extension ........................ SUCCESS [ 0.023 s]
[2022-08-19T07:50:10.975Z] [INFO] Drools :: Quarkus Extension :: Util :: Deployment .. SUCCESS [ 4.630 s]
[2022-08-19T07:50:10.975Z] [INFO] Drools :: Quarkus Extension :: Runtime ............. SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] Drools :: Quarkus Extension :: Deployment .......... SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] Drools :: Quarkus Extension :: Integration Test .... SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] Drools :: Quarkus Extension :: Integration Test :: Hotreload SKIPPED
[2022-08-19T07:50:10.975Z] [INFO] ------------------------------------------------------------------------
[2022-08-19T07:50:10.975Z] [INFO] BUILD FAILURE
[2022-08-19T07:50:10.975Z] [INFO] ------------------------------------------------------------------------
[2022-08-19T07:50:10.975Z] [INFO] Total time: 02:49 min
[2022-08-19T07:50:10.975Z] [INFO] Finished at: 2022-08-19T03:50:09-04:00
[2022-08-19T07:50:10.975Z] [INFO] ------------------------------------------------------------------------
[2022-08-19T07:50:10.975Z] [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:testCompile (default-testCompile) on project drools-model-codegen: Compilation failure: Compilation failure:
[2022-08-19T07:50:10.975Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.downstream.kogito-runtimes/bc/kiegroup_drools/drools-model/drools-model-codegen/src/test/java/org/drools/model/codegen/execmodel/NamedConsequencesTest.java:[646,9] cannot find symbol
[2022-08-19T07:50:10.975Z] [ERROR] symbol: method assertEquals(int,int)
[2022-08-19T07:50:10.975Z] [ERROR] location: class org.drools.model.codegen.execmodel.NamedConsequencesTest
[2022-08-19T07:50:10.975Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.downstream.kogito-runtimes/bc/kiegroup_drools/drools-model/drools-model-codegen/src/test/java/org/drools/model/codegen/execmodel/NamedConsequencesTest.java:[647,9] cannot find symbol
[2022-08-19T07:50:10.975Z] [ERROR] symbol: method assertTrue(boolean)
[2022-08-19T07:50:10.975Z] [ERROR] location: class org.drools.model.codegen.execmodel.NamedConsequencesTest
[2022-08-19T07:50:10.975Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.downstream.kogito-runtimes/bc/kiegroup_drools/drools-model/drools-model-codegen/src/test/java/org/drools/model/codegen/execmodel/NamedConsequencesTest.java:[648,9] cannot find symbol
[2022-08-19T07:50:10.975Z] [ERROR] symbol: method assertTrue(boolean)
[2022-08-19T07:50:10.975Z] [ERROR] location: class org.drools.model.codegen.execmodel.NamedConsequencesTest
[2022-08-19T07:50:10.975Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.downstream.kogito-runtimes/bc/kiegroup_drools/drools-model/drools-model-codegen/src/test/java/org/drools/model/codegen/execmodel/NamedConsequencesTest.java:[682,9] cannot find symbol
[2022-08-19T07:50:10.975Z] [ERROR] symbol: method assertEquals(int,int)
[2022-08-19T07:50:10.975Z] [ERROR] location: class org.drools.model.codegen.execmodel.NamedConsequencesTest
[2022-08-19T07:50:10.975Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.downstream.kogito-runtimes/bc/kiegroup_drools/drools-model/drools-model-codegen/src/test/java/org/drools/model/codegen/execmodel/NamedConsequencesTest.java:[683,9] cannot find symbol
[2022-08-19T07:50:10.975Z] [ERROR] symbol: method assertTrue(boolean)
[2022-08-19T07:50:10.975Z] [ERROR] location: class org.drools.model.codegen.execmodel.NamedConsequencesTest
[2022-08-19T07:50:10.975Z] [ERROR] -> [Help 1]
[2022-08-19T07:50:10.975Z] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:testCompile (default-testCompile) on project drools-model-codegen: Compilation failure
[2022-08-19T07:50:10.975Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:375)
[2022-08-19T07:50:10.975Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2022-08-19T07:50:10.975Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2022-08-19T07:50:10.975Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2022-08-19T07:50:10.975Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2022-08-19T07:50:10.975Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2022-08-19T07:50:10.975Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2022-08-19T07:50:10.975Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2022-08-19T07:50:10.975Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2022-08-19T07:50:10.975Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:294)
[2022-08-19T07:50:10.975Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2022-08-19T07:50:10.975Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2022-08-19T07:50:10.975Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2022-08-19T07:50:10.975Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2022-08-19T07:50:10.975Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2022-08-19T07:50:10.975Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2022-08-19T07:50:10.975Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2022-08-19T07:50:10.975Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2022-08-19T07:50:10.975Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2022-08-19T07:50:10.975Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2022-08-19T07:50:10.975Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2022-08-19T07:50:10.975Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2022-08-19T07:50:10.975Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2022-08-19T07:50:10.975Z] Caused by: org.apache.maven.plugin.compiler.CompilationFailureException: Compilation failure
[2022-08-19T07:50:10.976Z] at org.apache.maven.plugin.compiler.AbstractCompilerMojo.execute (AbstractCompilerMojo.java:1220)
[2022-08-19T07:50:10.976Z] at org.apache.maven.plugin.compiler.TestCompilerMojo.execute (TestCompilerMojo.java:180)
[2022-08-19T07:50:10.976Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2022-08-19T07:50:10.976Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2022-08-19T07:50:10.976Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2022-08-19T07:50:10.976Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2022-08-19T07:50:10.976Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2022-08-19T07:50:10.976Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2022-08-19T07:50:10.976Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2022-08-19T07:50:10.976Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2022-08-19T07:50:10.976Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2022-08-19T07:50:10.976Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2022-08-19T07:50:10.976Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:294)
[2022-08-19T07:50:10.976Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2022-08-19T07:50:10.976Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2022-08-19T07:50:10.976Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2022-08-19T07:50:10.976Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2022-08-19T07:50:10.976Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2022-08-19T07:50:10.976Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2022-08-19T07:50:10.976Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2022-08-19T07:50:10.976Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2022-08-19T07:50:10.976Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2022-08-19T07:50:10.976Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2022-08-19T07:50:10.976Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2022-08-19T07:50:10.976Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2022-08-19T07:50:10.976Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2022-08-19T07:50:10.976Z] [ERROR]
[2022-08-19T07:50:10.976Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2022-08-19T07:50:10.976Z] [ERROR]
[2022-08-19T07:50:10.976Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2022-08-19T07:50:10.976Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[2022-08-19T07:50:10.976Z] [ERROR]
[2022-08-19T07:50:10.976Z] [ERROR] After correcting the problems, you can resume the build with the command
[2022-08-19T07:50:10.976Z] [ERROR] mvn -rf :drools-model-codegen
[2022-08-19T07:50:10.976Z] ::error title= [kiegroup/drools] [Execution ERROR]::mvn clean install -Dquickly -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false dependency:tree -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B -s /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.downstream.kogito-runtimes@tmp/config251943825399986060tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true
[2022-08-19T07:50:10.976Z] [INFO] Archive artifact won't be executed
[2022-08-19T07:50:10.976Z] ::group::[Pull Request Flow] Execution Summary...
[2022-08-19T07:50:10.976Z] [INFO] ----------------------------------------------
[2022-08-19T07:50:10.976Z] [INFO] [kiegroup/drools]. Execution Result: error. Time: 2m 51.7s (171751 ms)
[2022-08-19T07:50:10.976Z] [INFO] ----------------------------------------------
[2022-08-19T07:50:10.976Z] ::endgroup::
[2022-08-19T07:50:11.235Z] [ERROR] [kiegroup/drools] error executing command: 'mvn clean install -Dquickly -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false dependency:tree -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B -s /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.downstream.kogito-runtimes@tmp/config251943825399986060tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true'. Message: Error: The process '/opt/tools/apache-maven-3.8.6/bin/mvn' failed with exit code 1
[2022-08-19T07:50:11.235Z] [ERROR] Command executions have failed, please review latest execution Error: [kiegroup/drools] error executing command: 'mvn clean install -Dquickly -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false dependency:tree -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B -s /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.downstream.kogito-runtimes@tmp/config251943825399986060tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true'. Message: Error: The process '/opt/tools/apache-maven-3.8.6/bin/mvn' failed with exit code 1
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] }
[2022-08-19T07:50:11.295Z] Deleting 1 temporary files
[Pipeline] // configFileProvider
[Pipeline] }
[Pipeline] // script
Post stage
[Pipeline] junit
[2022-08-19T07:50:11.413Z] Recording test results
[2022-08-19T07:50:12.330Z] No test report files were found. Configuration error?
Error when executing always post condition:
Also: hudson.remoting.Channel$CallSiteStackTrace: Remote call to rhos-01-kie-psi-rhel7-xlarge-301
at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1797)
at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:356)
at hudson.remoting.Channel.call(Channel.java:1001)
at hudson.FilePath.act(FilePath.java:1166)
at hudson.FilePath.act(FilePath.java:1155)
at hudson.tasks.junit.JUnitParser.parseResult(JUnitParser.java:107)
at hudson.tasks.junit.JUnitResultArchiver.parse(JUnitResultArchiver.java:153)
at hudson.tasks.junit.JUnitResultArchiver.parseAndSummarize(JUnitResultArchiver.java:247)
at hudson.tasks.junit.pipeline.JUnitResultsStepExecution.run(JUnitResultsStepExecution.java:63)
at hudson.tasks.junit.pipeline.JUnitResultsStepExecution.run(JUnitResultsStepExecution.java:29)
at org.jenkinsci.plugins.workflow.steps.SynchronousNonBlockingStepExecution.lambda$start$0(SynchronousNonBlockingStepExecution.java:47)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
hudson.AbortException: No test report files were found. Configuration error?
at hudson.tasks.junit.JUnitParser$ParseResultCallable.invoke(JUnitParser.java:154)
at hudson.FilePath$FileCallableWrapper.call(FilePath.java:3338)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:376)
at hudson.remoting.InterceptingExecutorService.lambda$wrap$0(InterceptingExecutorService.java:78)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:750)

[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2022-08-19T07:50:12.676Z] + rm -rf console.log
[Pipeline] sh

kie-ci3 avatar Aug 19 '22 07:08 kie-ci3

(tests) - kogito-examples job #409 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/job/drools.tests.downstream.kogito-examples/409/display/redirect See console log:

Console Logs [2022-08-19T07:50:27.321Z] [INFO] Drools :: Legacy Test Util ......................... SUCCESS [ 0.348 s]
[2022-08-19T07:50:27.321Z] [INFO] Drools :: Beliefs .................................. SUCCESS [ 1.036 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Serialization :: Protobuf ................ SUCCESS [ 4.651 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools Persistence projects ........................ SUCCESS [ 0.018 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Persistence :: API ....................... SUCCESS [ 0.193 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Persistence :: JPA ....................... SUCCESS [ 2.503 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Traits ................................... SUCCESS [ 3.003 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Verifier ................................. SUCCESS [ 0.023 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools Workbench - Verifier Api .................... SUCCESS [ 0.092 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Verifier DRL ............................. SUCCESS [ 1.764 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools Workbench - Verifier Core ................... SUCCESS [ 1.750 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools examples .................................... SUCCESS [ 1.458 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: CI .......................................... SUCCESS [ 1.041 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Engine :: Classic ........................ SUCCESS [ 0.090 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: API examples ............................. SUCCESS [ 0.017 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: API examples :: Default KieSession ....... SUCCESS [ 0.281 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: API examples :: Named KieSession ......... SUCCESS [ 0.180 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: API examples :: KieBase Inclusion ........ SUCCESS [ 0.176 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: API examples :: Default KieSession From File SUCCESS [ 0.229 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: API examples :: Named KieSession from File SUCCESS [ 0.194 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: API examples :: KieModule from Multiple Files SUCCESS [ 0.203 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: examples :: KieFileSystemExample ......... SUCCESS [ 0.249 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: API examples :: KieModuleModel Example ... SUCCESS [ 0.285 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: API examples :: KieContainer from KieRepo SUCCESS [ 0.288 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: API examples :: Multiple KieBases ........ SUCCESS [ 0.179 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: API examples :: Reactive KieSession ...... SUCCESS [ 0.280 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Test Coverage ............................ SUCCESS [ 0.070 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Test Coverage :: Standalone reproducers .. SUCCESS [ 0.022 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Parent SUCCESS [ 0.020 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Domain SUCCESS [ 0.248 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: KJar SUCCESS [ 0.048 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Tests SUCCESS [ 0.342 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Parent SUCCESS [ 0.022 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Domain SUCCESS [ 0.100 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: KJar SUCCESS [ 0.085 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Tests SUCCESS [ 0.317 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Test Coverage :: Test Suite .............. SKIPPED
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Engine ................................... SKIPPED
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Alpha Network Compiler ................... SKIPPED
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Test Coverage :: Compiler integration tests SKIPPED
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Test Coverage :: Integration tests without mvel SKIPPED
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Test Coverage :: Integration tests without TMS SKIPPED
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Test Coverage :: Integration tests without xml SKIPPED
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Scenario Simulation Parent ............... SUCCESS [ 0.018 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Scenario Simulation API .................. SUCCESS [ 0.981 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: Decision Model Notation ..................... SUCCESS [ 0.021 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: Decision Model Notation :: Model ............ SUCCESS [ 1.076 s]
[2022-08-19T07:50:27.322Z] [INFO] Efesto ............................................. SUCCESS [ 3.276 s]
[2022-08-19T07:50:27.322Z] [INFO] Efesto :: Core ..................................... SUCCESS [ 0.034 s]
[2022-08-19T07:50:27.322Z] [INFO] Efesto :: Common :: Api ............................ SUCCESS [ 2.451 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: Decision Model Notation :: API .............. SUCCESS [ 0.242 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: Decision Model Notation :: FEEL ............. SUCCESS [ 8.377 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: Decision Model Notation :: Backend .......... SUCCESS [ 1.493 s]
[2022-08-19T07:50:27.322Z] [INFO] Efesto :: Runtime :: Manager ....................... SUCCESS [ 0.040 s]
[2022-08-19T07:50:27.322Z] [INFO] Efesto :: Runtime :: Manager :: Api ................ SUCCESS [ 0.777 s]
[2022-08-19T07:50:27.322Z] [INFO] Efesto :: Compilation :: Manager ................... SUCCESS [ 0.030 s]
[2022-08-19T07:50:27.322Z] [INFO] Efesto :: Compilation :: Manager :: Api ............ SUCCESS [ 0.169 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML ........................................ SUCCESS [ 0.076 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: API ................................. SUCCESS [ 1.291 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Commons ............................. SUCCESS [ 1.653 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Evaluator ........................... SUCCESS [ 0.069 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Evaluator :: API .................... SUCCESS [ 0.100 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Evaluator :: Core ................... SUCCESS [ 0.903 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Compiler ............................ SUCCESS [ 0.030 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Compiler :: API ..................... SUCCESS [ 1.305 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Compiler :: Commons ................. SUCCESS [ 2.981 s]
[2022-08-19T07:50:27.322Z] [INFO] Efesto :: Compilation :: Manager :: Core ........... SUCCESS [ 0.742 s]
[2022-08-19T07:50:27.322Z] [INFO] Efesto :: Common :: Utils .......................... SUCCESS [ 0.214 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Compiler :: Core .................... SUCCESS [ 0.674 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Evaluator :: Utils .................. SUCCESS [ 0.168 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Models .............................. SUCCESS [ 0.070 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Models :: Tree ...................... SUCCESS [ 0.071 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Models :: Tree :: Model ............. SUCCESS [ 0.607 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Models :: Tree :: Compiler .......... SUCCESS [ 0.957 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Models :: Tree :: Evaluator ......... SUCCESS [ 0.451 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: Decision Model Notation :: Core ............. SKIPPED
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Scenario Simulation Backend .............. SKIPPED
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Models :: Drools .................... SUCCESS [ 0.355 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Models :: Drools :: Common .......... SKIPPED
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Models :: Regression ................ SUCCESS [ 0.038 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Models :: Regression :: Model ....... SUCCESS [ 0.529 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Models :: Regression :: Compiler .... SUCCESS [ 1.145 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Models :: Regression :: Evaluator ... SUCCESS [ 0.402 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Models :: Scorecard ................. SUCCESS [ 0.032 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Model ........ SUCCESS [ 0.524 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Compiler ..... SUCCESS [ 0.892 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Evaluator .... SUCCESS [ 0.406 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Models :: Mining .................... SUCCESS [ 0.025 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Models :: Mining :: Model ........... SUCCESS [ 0.562 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Models :: Mining :: Compiler ........ SKIPPED
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Models :: Mining :: Evaluator ....... SUCCESS [ 0.581 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Models :: Clustering ................ SUCCESS [ 0.022 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Models :: Clustering :: Model ....... SUCCESS [ 0.526 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Models :: Clustering :: Compiler .... SUCCESS [ 0.815 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Models :: Clustering :: Evaluator ... SUCCESS [ 0.415 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Dependencies ........................ SKIPPED
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree ............ SUCCESS [ 0.023 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Model ... SKIPPED
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Compiler SKIPPED
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Evaluator SKIPPED
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard ....... SUCCESS [ 0.025 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Model SKIPPED
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Compiler SKIPPED
[2022-08-19T07:50:27.322Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Evaluator SKIPPED
[2022-08-19T07:50:27.322Z] [INFO] KIE :: DRL ......................................... SUCCESS [ 0.022 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: DRL :: Compilation :: Common ................ SKIPPED
[2022-08-19T07:50:27.322Z] [INFO] KIE :: DRL :: Runtime :: Common .................... SUCCESS [ 0.234 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: DRL :: Implementations ...................... SUCCESS [ 0.022 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: DRL :: MapInput ............................. SUCCESS [ 0.022 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: DRL :: MapInput :: Runtime .................. SUCCESS [ 0.514 s]
[2022-08-19T07:50:27.322Z] [INFO] Efesto :: Runtime :: Manager :: Core ............... SUCCESS [ 0.494 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Scenario Simulation Integration Test ..... SKIPPED
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Metric Analysis .......................... SUCCESS [ 0.670 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Impact Analysis .......................... SUCCESS [ 0.036 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Impact Analysis :: Model ................. SUCCESS [ 0.112 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Impact Analysis :: Parser ................ SKIPPED
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Impact Analysis Graph .................... SUCCESS [ 0.014 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Impact Analysis Graph :: Common .......... SUCCESS [ 0.113 s]
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Impact Analysis Graph :: Graphviz ........ SKIPPED
[2022-08-19T07:50:27.322Z] [INFO] Drools :: Impact Analysis :: Integration Tests ..... SKIPPED
[2022-08-19T07:50:27.322Z] [INFO] Drools :: ReteDiagram .............................. SUCCESS [ 0.655 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: Efesto :: Dependencies ...................... SUCCESS [ 0.032 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: DRL :: KieSession :: Local .................. SUCCESS [ 0.019 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: DRL :: KieSession :: Local :: Runtime ....... SUCCESS [ 0.111 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: DRL :: API .................................. SUCCESS [ 0.136 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: DRL :: Tests ................................ SKIPPED
[2022-08-19T07:50:27.322Z] [INFO] KIE :: Decision Model Notation :: Internal utils for Validation bootstrap SKIPPED
[2022-08-19T07:50:27.322Z] [INFO] KIE :: Decision Model Notation :: Validation ....... SKIPPED
[2022-08-19T07:50:27.322Z] [INFO] KIE :: Decision Model Notation :: FEEL DMN GWT FUNCTIONS SUCCESS [ 3.216 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: Decision Model Notation :: FEEL DMN GWT ..... SUCCESS [ 1.884 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: Decision Model Notation :: OpenAPI (OAS) utilities SKIPPED
[2022-08-19T07:50:27.322Z] [INFO] KIE :: Decision Model Notation :: TCK .............. SUCCESS [ 0.011 s]
[2022-08-19T07:50:27.322Z] [INFO] KIE :: Decision Model Notation :: Legacy tests (previous DMN versions) SKIPPED
[2022-08-19T07:50:27.322Z] [INFO] KIE :: Decision Model Notation :: Trisotech extensions support SKIPPED
[2022-08-19T07:50:27.323Z] [INFO] KIE :: Decision Model Notation :: Signavio extensions support SKIPPED
[2022-08-19T07:50:27.323Z] [INFO] KiE :: Decision Model Notation - PMML Tests :: Parent SUCCESS [ 0.012 s]
[2022-08-19T07:50:27.323Z] [INFO] KiE :: Decision Model Notation - PMML Tests ........ SKIPPED
[2022-08-19T07:50:27.323Z] [INFO] KiE :: Decision Model Notation - PMML Trusty Tests . SKIPPED
[2022-08-19T07:50:27.323Z] [INFO] KIE :: Decision Model Notation :: xls2dmn CLI Utility SKIPPED
[2022-08-19T07:50:27.323Z] [INFO] KIE :: Decision Model Notation :: JSR-223 JQ ScriptEngine SUCCESS [ 0.353 s]
[2022-08-19T07:50:27.323Z] [INFO] KIE :: Decision Model Notation :: Core JSR-223 ..... SKIPPED
[2022-08-19T07:50:27.323Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn parent SUCCESS [ 0.075 s]
[2022-08-19T07:50:27.323Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn utilities SKIPPED
[2022-08-19T07:50:27.323Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn CLI .. SKIPPED
[2022-08-19T07:50:27.323Z] [INFO] KIE :: PMML :: Models :: Tests ..................... SUCCESS [ 0.363 s]
[2022-08-19T07:50:27.323Z] [INFO] KIE :: PMML :: Models :: Regression :: Tests ....... SUCCESS [ 0.551 s]
[2022-08-19T07:50:27.323Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Tests ... SKIPPED
[2022-08-19T07:50:27.323Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Tests SKIPPED
[2022-08-19T07:50:27.323Z] [INFO] KIE :: PMML :: Models :: Mining :: Tests ........... SKIPPED
[2022-08-19T07:50:27.323Z] [INFO] KIE :: PMML :: Models :: Tree :: Tests ............. SUCCESS [ 0.584 s]
[2022-08-19T07:50:27.323Z] [INFO] KIE :: PMML :: Models :: Clustering :: Tests ....... SUCCESS [ 0.630 s]
[2022-08-19T07:50:27.323Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Tests ........ SUCCESS [ 0.593 s]
[2022-08-19T07:50:27.323Z] [INFO] KIE :: Maven Plugin ................................ SKIPPED
[2022-08-19T07:50:27.323Z] [INFO] KIE :: Maven Archetypes ............................ SKIPPED
[2022-08-19T07:50:27.323Z] [INFO] KIE :: Drools Maven Archetype ...................... SKIPPED
[2022-08-19T07:50:27.323Z] [INFO] KIE :: Drools DMN engine Maven Archetype ........... SKIPPED
[2022-08-19T07:50:27.323Z] [INFO] KIE :: Drools Maven Archetype with Executable Model and RuleUnit SKIPPED
[2022-08-19T07:50:27.323Z] [INFO] KIE :: Drools Maven Archetype with Executable Model and traditional rule style SKIPPED
[2022-08-19T07:50:27.323Z] [INFO] KIE :: KJAR Archetype .............................. SKIPPED
[2022-08-19T07:50:27.323Z] [INFO] KIE :: Model Archetype ............................. SKIPPED
[2022-08-19T07:50:27.323Z] [INFO] KIE :: Service Spring Boot Archetype ............... SKIPPED
[2022-08-19T07:50:27.323Z] [INFO] Drools :: Quarkus Extension ........................ SUCCESS [ 0.021 s]
[2022-08-19T07:50:27.323Z] [INFO] Drools :: Quarkus Extension :: Util :: Deployment .. SUCCESS [ 5.354 s]
[2022-08-19T07:50:27.323Z] [INFO] Drools :: Quarkus Extension :: Runtime ............. SKIPPED
[2022-08-19T07:50:27.323Z] [INFO] Drools :: Quarkus Extension :: Deployment .......... SKIPPED
[2022-08-19T07:50:27.323Z] [INFO] Drools :: Quarkus Extension :: Integration Test .... SKIPPED
[2022-08-19T07:50:27.323Z] [INFO] Drools :: Quarkus Extension :: Integration Test :: Hotreload SKIPPED
[2022-08-19T07:50:27.323Z] [INFO] ------------------------------------------------------------------------
[2022-08-19T07:50:27.323Z] [INFO] BUILD FAILURE
[2022-08-19T07:50:27.323Z] [INFO] ------------------------------------------------------------------------
[2022-08-19T07:50:27.323Z] [INFO] Total time: 02:51 min
[2022-08-19T07:50:27.323Z] [INFO] Finished at: 2022-08-19T03:50:26-04:00
[2022-08-19T07:50:27.323Z] [INFO] ------------------------------------------------------------------------
[2022-08-19T07:50:27.323Z] [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:testCompile (default-testCompile) on project drools-model-codegen: Compilation failure: Compilation failure:
[2022-08-19T07:50:27.323Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.downstream.kogito-examples/bc/kiegroup_drools/drools-model/drools-model-codegen/src/test/java/org/drools/model/codegen/execmodel/NamedConsequencesTest.java:[646,9] cannot find symbol
[2022-08-19T07:50:27.323Z] [ERROR] symbol: method assertEquals(int,int)
[2022-08-19T07:50:27.323Z] [ERROR] location: class org.drools.model.codegen.execmodel.NamedConsequencesTest
[2022-08-19T07:50:27.323Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.downstream.kogito-examples/bc/kiegroup_drools/drools-model/drools-model-codegen/src/test/java/org/drools/model/codegen/execmodel/NamedConsequencesTest.java:[647,9] cannot find symbol
[2022-08-19T07:50:27.323Z] [ERROR] symbol: method assertTrue(boolean)
[2022-08-19T07:50:27.323Z] [ERROR] location: class org.drools.model.codegen.execmodel.NamedConsequencesTest
[2022-08-19T07:50:27.323Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.downstream.kogito-examples/bc/kiegroup_drools/drools-model/drools-model-codegen/src/test/java/org/drools/model/codegen/execmodel/NamedConsequencesTest.java:[648,9] cannot find symbol
[2022-08-19T07:50:27.323Z] [ERROR] symbol: method assertTrue(boolean)
[2022-08-19T07:50:27.323Z] [ERROR] location: class org.drools.model.codegen.execmodel.NamedConsequencesTest
[2022-08-19T07:50:27.323Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.downstream.kogito-examples/bc/kiegroup_drools/drools-model/drools-model-codegen/src/test/java/org/drools/model/codegen/execmodel/NamedConsequencesTest.java:[682,9] cannot find symbol
[2022-08-19T07:50:27.323Z] [ERROR] symbol: method assertEquals(int,int)
[2022-08-19T07:50:27.323Z] [ERROR] location: class org.drools.model.codegen.execmodel.NamedConsequencesTest
[2022-08-19T07:50:27.323Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.downstream.kogito-examples/bc/kiegroup_drools/drools-model/drools-model-codegen/src/test/java/org/drools/model/codegen/execmodel/NamedConsequencesTest.java:[683,9] cannot find symbol
[2022-08-19T07:50:27.323Z] [ERROR] symbol: method assertTrue(boolean)
[2022-08-19T07:50:27.323Z] [ERROR] location: class org.drools.model.codegen.execmodel.NamedConsequencesTest
[2022-08-19T07:50:27.323Z] [ERROR] -> [Help 1]
[2022-08-19T07:50:27.323Z] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:testCompile (default-testCompile) on project drools-model-codegen: Compilation failure
[2022-08-19T07:50:27.323Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:375)
[2022-08-19T07:50:27.323Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2022-08-19T07:50:27.323Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2022-08-19T07:50:27.323Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2022-08-19T07:50:27.323Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2022-08-19T07:50:27.323Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2022-08-19T07:50:27.323Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2022-08-19T07:50:27.323Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2022-08-19T07:50:27.323Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2022-08-19T07:50:27.323Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:294)
[2022-08-19T07:50:27.323Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2022-08-19T07:50:27.323Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2022-08-19T07:50:27.323Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2022-08-19T07:50:27.323Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2022-08-19T07:50:27.323Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2022-08-19T07:50:27.323Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2022-08-19T07:50:27.323Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2022-08-19T07:50:27.323Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2022-08-19T07:50:27.323Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2022-08-19T07:50:27.323Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2022-08-19T07:50:27.323Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2022-08-19T07:50:27.323Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2022-08-19T07:50:27.323Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2022-08-19T07:50:27.323Z] Caused by: org.apache.maven.plugin.compiler.CompilationFailureException: Compilation failure
[2022-08-19T07:50:27.323Z] at org.apache.maven.plugin.compiler.AbstractCompilerMojo.execute (AbstractCompilerMojo.java:1220)
[2022-08-19T07:50:27.323Z] at org.apache.maven.plugin.compiler.TestCompilerMojo.execute (TestCompilerMojo.java:180)
[2022-08-19T07:50:27.323Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2022-08-19T07:50:27.323Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2022-08-19T07:50:27.323Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2022-08-19T07:50:27.323Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2022-08-19T07:50:27.323Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2022-08-19T07:50:27.323Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2022-08-19T07:50:27.323Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2022-08-19T07:50:27.323Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2022-08-19T07:50:27.323Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2022-08-19T07:50:27.323Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2022-08-19T07:50:27.323Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:294)
[2022-08-19T07:50:27.323Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2022-08-19T07:50:27.323Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2022-08-19T07:50:27.323Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2022-08-19T07:50:27.323Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2022-08-19T07:50:27.323Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2022-08-19T07:50:27.323Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2022-08-19T07:50:27.323Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2022-08-19T07:50:27.323Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2022-08-19T07:50:27.323Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2022-08-19T07:50:27.323Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2022-08-19T07:50:27.323Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2022-08-19T07:50:27.324Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2022-08-19T07:50:27.324Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2022-08-19T07:50:27.324Z] [ERROR]
[2022-08-19T07:50:27.324Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2022-08-19T07:50:27.324Z] [ERROR]
[2022-08-19T07:50:27.324Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2022-08-19T07:50:27.324Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[2022-08-19T07:50:27.324Z] [ERROR]
[2022-08-19T07:50:27.324Z] [ERROR] After correcting the problems, you can resume the build with the command
[2022-08-19T07:50:27.324Z] [ERROR] mvn -rf :drools-model-codegen
[2022-08-19T07:50:27.583Z] ::error title= [kiegroup/drools] [Execution ERROR]::mvn clean install -Dquickly -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false dependency:tree -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B -s /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.downstream.kogito-examples@tmp/config2883067180343115352tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true
[2022-08-19T07:50:27.583Z] [INFO] Archive artifact won't be executed
[2022-08-19T07:50:27.583Z] ::group::[Pull Request Flow] Execution Summary...
[2022-08-19T07:50:27.583Z] [INFO] ----------------------------------------------
[2022-08-19T07:50:27.583Z] [INFO] [kiegroup/drools]. Execution Result: error. Time: 2m 53.7s (173751 ms)
[2022-08-19T07:50:27.583Z] [INFO] ----------------------------------------------
[2022-08-19T07:50:27.583Z] ::endgroup::
[2022-08-19T07:50:27.583Z] [ERROR] [kiegroup/drools] error executing command: 'mvn clean install -Dquickly -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false dependency:tree -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B -s /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.downstream.kogito-examples@tmp/config2883067180343115352tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true'. Message: Error: The process '/opt/tools/apache-maven-3.8.6/bin/mvn' failed with exit code 1
[2022-08-19T07:50:27.583Z] [ERROR] Command executions have failed, please review latest execution Error: [kiegroup/drools] error executing command: 'mvn clean install -Dquickly -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false dependency:tree -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B -s /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.downstream.kogito-examples@tmp/config2883067180343115352tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true'. Message: Error: The process '/opt/tools/apache-maven-3.8.6/bin/mvn' failed with exit code 1
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] }
[2022-08-19T07:50:27.647Z] Deleting 1 temporary files
[Pipeline] // configFileProvider
[Pipeline] }
[Pipeline] // script
Post stage
[Pipeline] junit
[2022-08-19T07:50:27.732Z] Recording test results
[2022-08-19T07:50:29.462Z] No test report files were found. Configuration error?
Error when executing always post condition:
Also: hudson.remoting.Channel$CallSiteStackTrace: Remote call to rhos-01-kie-psi-rhel7-xlarge-303
at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1797)
at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:356)
at hudson.remoting.Channel.call(Channel.java:1001)
at hudson.FilePath.act(FilePath.java:1166)
at hudson.FilePath.act(FilePath.java:1155)
at hudson.tasks.junit.JUnitParser.parseResult(JUnitParser.java:107)
at hudson.tasks.junit.JUnitResultArchiver.parse(JUnitResultArchiver.java:153)
at hudson.tasks.junit.JUnitResultArchiver.parseAndSummarize(JUnitResultArchiver.java:247)
at hudson.tasks.junit.pipeline.JUnitResultsStepExecution.run(JUnitResultsStepExecution.java:63)
at hudson.tasks.junit.pipeline.JUnitResultsStepExecution.run(JUnitResultsStepExecution.java:29)
at org.jenkinsci.plugins.workflow.steps.SynchronousNonBlockingStepExecution.lambda$start$0(SynchronousNonBlockingStepExecution.java:47)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
hudson.AbortException: No test report files were found. Configuration error?
at hudson.tasks.junit.JUnitParser$ParseResultCallable.invoke(JUnitParser.java:154)
at hudson.FilePath$FileCallableWrapper.call(FilePath.java:3338)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:376)
at hudson.remoting.InterceptingExecutorService.lambda$wrap$0(InterceptingExecutorService.java:78)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:750)

[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2022-08-19T07:50:29.873Z] + rm -rf console.log
[Pipeline] sh

kie-ci3 avatar Aug 19 '22 07:08 kie-ci3

(tests) - kogito-apps job #407 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/job/drools.tests.downstream.kogito-apps/407/display/redirect See console log:

Console Logs [2022-08-19T07:50:29.757Z] [INFO] Drools :: Legacy Test Util ......................... SUCCESS [ 0.433 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: Beliefs .................................. SUCCESS [ 0.916 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: Serialization :: Protobuf ................ SUCCESS [ 4.458 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools Persistence projects ........................ SUCCESS [ 0.056 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: Persistence :: API ....................... SUCCESS [ 0.223 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: Persistence :: JPA ....................... SUCCESS [ 2.269 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: Traits ................................... SUCCESS [ 3.114 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: Verifier ................................. SUCCESS [ 0.032 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools Workbench - Verifier Api .................... SUCCESS [ 0.133 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: Verifier DRL ............................. SUCCESS [ 1.718 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools Workbench - Verifier Core ................... SUCCESS [ 1.723 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools examples .................................... SUCCESS [ 1.505 s]
[2022-08-19T07:50:29.757Z] [INFO] KIE :: CI .......................................... SUCCESS [ 1.021 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: Engine :: Classic ........................ SUCCESS [ 0.042 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: API examples ............................. SUCCESS [ 0.020 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: API examples :: Default KieSession ....... SUCCESS [ 0.194 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: API examples :: Named KieSession ......... SUCCESS [ 0.189 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: API examples :: KieBase Inclusion ........ SUCCESS [ 0.177 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: API examples :: Default KieSession From File SUCCESS [ 0.223 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: API examples :: Named KieSession from File SUCCESS [ 0.232 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: API examples :: KieModule from Multiple Files SUCCESS [ 0.179 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: examples :: KieFileSystemExample ......... SUCCESS [ 0.203 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: API examples :: KieModuleModel Example ... SUCCESS [ 0.229 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: API examples :: KieContainer from KieRepo SUCCESS [ 0.360 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: API examples :: Multiple KieBases ........ SUCCESS [ 0.180 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: API examples :: Reactive KieSession ...... SUCCESS [ 0.241 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: Test Coverage ............................ SUCCESS [ 0.027 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: Test Coverage :: Standalone reproducers .. SUCCESS [ 0.036 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Parent SUCCESS [ 0.018 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Domain SUCCESS [ 0.071 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: KJar SUCCESS [ 0.277 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Tests SUCCESS [ 0.363 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Parent SUCCESS [ 0.029 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Domain SUCCESS [ 0.119 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: KJar SUCCESS [ 0.059 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Tests SUCCESS [ 0.248 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: Test Coverage :: Test Suite .............. SKIPPED
[2022-08-19T07:50:29.757Z] [INFO] Drools :: Engine ................................... SKIPPED
[2022-08-19T07:50:29.757Z] [INFO] Drools :: Alpha Network Compiler ................... SKIPPED
[2022-08-19T07:50:29.757Z] [INFO] Drools :: Test Coverage :: Compiler integration tests SKIPPED
[2022-08-19T07:50:29.757Z] [INFO] Drools :: Test Coverage :: Integration tests without mvel SKIPPED
[2022-08-19T07:50:29.757Z] [INFO] Drools :: Test Coverage :: Integration tests without TMS SKIPPED
[2022-08-19T07:50:29.757Z] [INFO] Drools :: Test Coverage :: Integration tests without xml SKIPPED
[2022-08-19T07:50:29.757Z] [INFO] Drools :: Scenario Simulation Parent ............... SUCCESS [ 0.018 s]
[2022-08-19T07:50:29.757Z] [INFO] Drools :: Scenario Simulation API .................. SUCCESS [ 0.692 s]
[2022-08-19T07:50:29.757Z] [INFO] KIE :: Decision Model Notation ..................... SUCCESS [ 0.022 s]
[2022-08-19T07:50:29.757Z] [INFO] KIE :: Decision Model Notation :: Model ............ SUCCESS [ 1.133 s]
[2022-08-19T07:50:29.757Z] [INFO] Efesto ............................................. SUCCESS [ 3.553 s]
[2022-08-19T07:50:29.757Z] [INFO] Efesto :: Core ..................................... SUCCESS [ 0.042 s]
[2022-08-19T07:50:29.757Z] [INFO] Efesto :: Common :: Api ............................ SUCCESS [ 2.789 s]
[2022-08-19T07:50:29.757Z] [INFO] KIE :: Decision Model Notation :: API .............. SUCCESS [ 0.209 s]
[2022-08-19T07:50:29.757Z] [INFO] KIE :: Decision Model Notation :: FEEL ............. SUCCESS [ 8.248 s]
[2022-08-19T07:50:29.757Z] [INFO] KIE :: Decision Model Notation :: Backend .......... SUCCESS [ 1.572 s]
[2022-08-19T07:50:29.757Z] [INFO] Efesto :: Runtime :: Manager ....................... SUCCESS [ 0.032 s]
[2022-08-19T07:50:29.757Z] [INFO] Efesto :: Runtime :: Manager :: Api ................ SUCCESS [ 0.928 s]
[2022-08-19T07:50:29.757Z] [INFO] Efesto :: Compilation :: Manager ................... SUCCESS [ 0.068 s]
[2022-08-19T07:50:29.757Z] [INFO] Efesto :: Compilation :: Manager :: Api ............ SUCCESS [ 0.254 s]
[2022-08-19T07:50:29.757Z] [INFO] KIE :: PMML ........................................ SUCCESS [ 0.096 s]
[2022-08-19T07:50:29.757Z] [INFO] KIE :: PMML :: API ................................. SUCCESS [ 1.246 s]
[2022-08-19T07:50:29.757Z] [INFO] KIE :: PMML :: Commons ............................. SUCCESS [ 1.909 s]
[2022-08-19T07:50:29.757Z] [INFO] KIE :: PMML :: Evaluator ........................... SUCCESS [ 0.046 s]
[2022-08-19T07:50:29.757Z] [INFO] KIE :: PMML :: Evaluator :: API .................... SUCCESS [ 0.102 s]
[2022-08-19T07:50:29.757Z] [INFO] KIE :: PMML :: Evaluator :: Core ................... SUCCESS [ 0.911 s]
[2022-08-19T07:50:29.757Z] [INFO] KIE :: PMML :: Compiler ............................ SUCCESS [ 0.065 s]
[2022-08-19T07:50:29.757Z] [INFO] KIE :: PMML :: Compiler :: API ..................... SUCCESS [ 1.497 s]
[2022-08-19T07:50:29.757Z] [INFO] KIE :: PMML :: Compiler :: Commons ................. SUCCESS [ 2.939 s]
[2022-08-19T07:50:29.757Z] [INFO] Efesto :: Compilation :: Manager :: Core ........... SUCCESS [ 0.525 s]
[2022-08-19T07:50:29.757Z] [INFO] Efesto :: Common :: Utils .......................... SUCCESS [ 0.150 s]
[2022-08-19T07:50:29.757Z] [INFO] KIE :: PMML :: Compiler :: Core .................... SUCCESS [ 0.795 s]
[2022-08-19T07:50:29.757Z] [INFO] KIE :: PMML :: Evaluator :: Utils .................. SUCCESS [ 0.127 s]
[2022-08-19T07:50:29.757Z] [INFO] KIE :: PMML :: Models .............................. SUCCESS [ 0.027 s]
[2022-08-19T07:50:29.757Z] [INFO] KIE :: PMML :: Models :: Tree ...................... SUCCESS [ 0.027 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Tree :: Model ............. SUCCESS [ 0.508 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Tree :: Compiler .......... SUCCESS [ 1.103 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Tree :: Evaluator ......... SUCCESS [ 0.404 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: Decision Model Notation :: Core ............. SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] Drools :: Scenario Simulation Backend .............. SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Drools .................... SUCCESS [ 0.338 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Drools :: Common .......... SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Regression ................ SUCCESS [ 0.033 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Regression :: Model ....... SUCCESS [ 0.550 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Regression :: Compiler .... SUCCESS [ 1.484 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Regression :: Evaluator ... SUCCESS [ 0.390 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Scorecard ................. SUCCESS [ 0.028 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Model ........ SUCCESS [ 0.554 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Compiler ..... SUCCESS [ 1.071 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Evaluator .... SUCCESS [ 0.526 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Mining .................... SUCCESS [ 0.022 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Mining :: Model ........... SUCCESS [ 0.548 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Mining :: Compiler ........ SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Mining :: Evaluator ....... SUCCESS [ 0.597 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Clustering ................ SUCCESS [ 0.026 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Clustering :: Model ....... SUCCESS [ 0.494 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Clustering :: Compiler .... SUCCESS [ 1.162 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Clustering :: Evaluator ... SUCCESS [ 0.666 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Dependencies ........................ SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree ............ SUCCESS [ 0.038 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Model ... SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Compiler SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Evaluator SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard ....... SUCCESS [ 0.034 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Model SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Compiler SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Evaluator SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: DRL ......................................... SUCCESS [ 0.024 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: DRL :: Compilation :: Common ................ SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: DRL :: Runtime :: Common .................... SUCCESS [ 0.253 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: DRL :: Implementations ...................... SUCCESS [ 0.032 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: DRL :: MapInput ............................. SUCCESS [ 0.028 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: DRL :: MapInput :: Runtime .................. SUCCESS [ 0.544 s]
[2022-08-19T07:50:29.758Z] [INFO] Efesto :: Runtime :: Manager :: Core ............... SUCCESS [ 0.406 s]
[2022-08-19T07:50:29.758Z] [INFO] Drools :: Scenario Simulation Integration Test ..... SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] Drools :: Metric Analysis .......................... SUCCESS [ 0.609 s]
[2022-08-19T07:50:29.758Z] [INFO] Drools :: Impact Analysis .......................... SUCCESS [ 0.024 s]
[2022-08-19T07:50:29.758Z] [INFO] Drools :: Impact Analysis :: Model ................. SUCCESS [ 0.130 s]
[2022-08-19T07:50:29.758Z] [INFO] Drools :: Impact Analysis :: Parser ................ SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] Drools :: Impact Analysis Graph .................... SUCCESS [ 0.019 s]
[2022-08-19T07:50:29.758Z] [INFO] Drools :: Impact Analysis Graph :: Common .......... SUCCESS [ 0.179 s]
[2022-08-19T07:50:29.758Z] [INFO] Drools :: Impact Analysis Graph :: Graphviz ........ SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] Drools :: Impact Analysis :: Integration Tests ..... SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] Drools :: ReteDiagram .............................. SUCCESS [ 0.762 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: Efesto :: Dependencies ...................... SUCCESS [ 0.123 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: DRL :: KieSession :: Local .................. SUCCESS [ 0.036 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: DRL :: KieSession :: Local :: Runtime ....... SUCCESS [ 0.363 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: DRL :: API .................................. SUCCESS [ 0.168 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: DRL :: Tests ................................ SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: Decision Model Notation :: Internal utils for Validation bootstrap SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: Decision Model Notation :: Validation ....... SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: Decision Model Notation :: FEEL DMN GWT FUNCTIONS SUCCESS [ 3.008 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: Decision Model Notation :: FEEL DMN GWT ..... SUCCESS [ 1.833 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: Decision Model Notation :: OpenAPI (OAS) utilities SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: Decision Model Notation :: TCK .............. SUCCESS [ 0.019 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: Decision Model Notation :: Legacy tests (previous DMN versions) SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: Decision Model Notation :: Trisotech extensions support SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: Decision Model Notation :: Signavio extensions support SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KiE :: Decision Model Notation - PMML Tests :: Parent SUCCESS [ 0.017 s]
[2022-08-19T07:50:29.758Z] [INFO] KiE :: Decision Model Notation - PMML Tests ........ SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KiE :: Decision Model Notation - PMML Trusty Tests . SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: Decision Model Notation :: xls2dmn CLI Utility SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: Decision Model Notation :: JSR-223 JQ ScriptEngine SUCCESS [ 0.654 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: Decision Model Notation :: Core JSR-223 ..... SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn parent SUCCESS [ 0.034 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn utilities SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn CLI .. SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Tests ..................... SUCCESS [ 0.498 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Regression :: Tests ....... SUCCESS [ 0.818 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Tests ... SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Tests SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Mining :: Tests ........... SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Tree :: Tests ............. SUCCESS [ 0.592 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Clustering :: Tests ....... SUCCESS [ 0.492 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Tests ........ SUCCESS [ 0.605 s]
[2022-08-19T07:50:29.758Z] [INFO] KIE :: Maven Plugin ................................ SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: Maven Archetypes ............................ SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: Drools Maven Archetype ...................... SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: Drools DMN engine Maven Archetype ........... SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: Drools Maven Archetype with Executable Model and RuleUnit SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: Drools Maven Archetype with Executable Model and traditional rule style SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: KJAR Archetype .............................. SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: Model Archetype ............................. SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] KIE :: Service Spring Boot Archetype ............... SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] Drools :: Quarkus Extension ........................ SUCCESS [ 0.022 s]
[2022-08-19T07:50:29.758Z] [INFO] Drools :: Quarkus Extension :: Util :: Deployment .. SUCCESS [ 5.316 s]
[2022-08-19T07:50:29.758Z] [INFO] Drools :: Quarkus Extension :: Runtime ............. SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] Drools :: Quarkus Extension :: Deployment .......... SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] Drools :: Quarkus Extension :: Integration Test .... SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] Drools :: Quarkus Extension :: Integration Test :: Hotreload SKIPPED
[2022-08-19T07:50:29.758Z] [INFO] ------------------------------------------------------------------------
[2022-08-19T07:50:29.758Z] [INFO] BUILD FAILURE
[2022-08-19T07:50:29.758Z] [INFO] ------------------------------------------------------------------------
[2022-08-19T07:50:29.758Z] [INFO] Total time: 02:57 min
[2022-08-19T07:50:29.758Z] [INFO] Finished at: 2022-08-19T03:50:28-04:00
[2022-08-19T07:50:29.758Z] [INFO] ------------------------------------------------------------------------
[2022-08-19T07:50:29.759Z] [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:testCompile (default-testCompile) on project drools-model-codegen: Compilation failure: Compilation failure:
[2022-08-19T07:50:29.759Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.downstream.kogito-apps/bc/kiegroup_drools/drools-model/drools-model-codegen/src/test/java/org/drools/model/codegen/execmodel/NamedConsequencesTest.java:[646,9] cannot find symbol
[2022-08-19T07:50:29.759Z] [ERROR] symbol: method assertEquals(int,int)
[2022-08-19T07:50:29.759Z] [ERROR] location: class org.drools.model.codegen.execmodel.NamedConsequencesTest
[2022-08-19T07:50:29.759Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.downstream.kogito-apps/bc/kiegroup_drools/drools-model/drools-model-codegen/src/test/java/org/drools/model/codegen/execmodel/NamedConsequencesTest.java:[647,9] cannot find symbol
[2022-08-19T07:50:29.759Z] [ERROR] symbol: method assertTrue(boolean)
[2022-08-19T07:50:29.759Z] [ERROR] location: class org.drools.model.codegen.execmodel.NamedConsequencesTest
[2022-08-19T07:50:29.759Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.downstream.kogito-apps/bc/kiegroup_drools/drools-model/drools-model-codegen/src/test/java/org/drools/model/codegen/execmodel/NamedConsequencesTest.java:[648,9] cannot find symbol
[2022-08-19T07:50:29.759Z] [ERROR] symbol: method assertTrue(boolean)
[2022-08-19T07:50:29.759Z] [ERROR] location: class org.drools.model.codegen.execmodel.NamedConsequencesTest
[2022-08-19T07:50:29.759Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.downstream.kogito-apps/bc/kiegroup_drools/drools-model/drools-model-codegen/src/test/java/org/drools/model/codegen/execmodel/NamedConsequencesTest.java:[682,9] cannot find symbol
[2022-08-19T07:50:29.759Z] [ERROR] symbol: method assertEquals(int,int)
[2022-08-19T07:50:29.759Z] [ERROR] location: class org.drools.model.codegen.execmodel.NamedConsequencesTest
[2022-08-19T07:50:29.759Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.downstream.kogito-apps/bc/kiegroup_drools/drools-model/drools-model-codegen/src/test/java/org/drools/model/codegen/execmodel/NamedConsequencesTest.java:[683,9] cannot find symbol
[2022-08-19T07:50:29.759Z] [ERROR] symbol: method assertTrue(boolean)
[2022-08-19T07:50:29.759Z] [ERROR] location: class org.drools.model.codegen.execmodel.NamedConsequencesTest
[2022-08-19T07:50:29.759Z] [ERROR] -> [Help 1]
[2022-08-19T07:50:29.759Z] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:testCompile (default-testCompile) on project drools-model-codegen: Compilation failure
[2022-08-19T07:50:29.759Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:375)
[2022-08-19T07:50:29.759Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2022-08-19T07:50:29.759Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2022-08-19T07:50:29.759Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2022-08-19T07:50:29.759Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2022-08-19T07:50:29.759Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2022-08-19T07:50:29.759Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2022-08-19T07:50:29.759Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2022-08-19T07:50:29.759Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2022-08-19T07:50:29.759Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:294)
[2022-08-19T07:50:29.759Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2022-08-19T07:50:29.759Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2022-08-19T07:50:29.759Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2022-08-19T07:50:29.759Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2022-08-19T07:50:29.759Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2022-08-19T07:50:29.759Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2022-08-19T07:50:29.759Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2022-08-19T07:50:29.759Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2022-08-19T07:50:29.759Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2022-08-19T07:50:29.759Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2022-08-19T07:50:29.759Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2022-08-19T07:50:29.759Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2022-08-19T07:50:29.759Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2022-08-19T07:50:29.759Z] Caused by: org.apache.maven.plugin.compiler.CompilationFailureException: Compilation failure
[2022-08-19T07:50:29.759Z] at org.apache.maven.plugin.compiler.AbstractCompilerMojo.execute (AbstractCompilerMojo.java:1220)
[2022-08-19T07:50:29.759Z] at org.apache.maven.plugin.compiler.TestCompilerMojo.execute (TestCompilerMojo.java:180)
[2022-08-19T07:50:29.759Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2022-08-19T07:50:29.759Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2022-08-19T07:50:29.759Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2022-08-19T07:50:29.759Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2022-08-19T07:50:29.759Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2022-08-19T07:50:29.759Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2022-08-19T07:50:29.759Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2022-08-19T07:50:29.759Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2022-08-19T07:50:29.759Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2022-08-19T07:50:29.759Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2022-08-19T07:50:29.759Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:294)
[2022-08-19T07:50:29.759Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2022-08-19T07:50:29.759Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2022-08-19T07:50:29.759Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2022-08-19T07:50:29.759Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2022-08-19T07:50:29.759Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2022-08-19T07:50:29.759Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2022-08-19T07:50:29.759Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2022-08-19T07:50:29.759Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2022-08-19T07:50:29.759Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2022-08-19T07:50:29.759Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2022-08-19T07:50:29.759Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2022-08-19T07:50:29.759Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2022-08-19T07:50:29.759Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2022-08-19T07:50:29.759Z] [ERROR]
[2022-08-19T07:50:29.759Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2022-08-19T07:50:29.759Z] [ERROR]
[2022-08-19T07:50:29.759Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2022-08-19T07:50:29.759Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[2022-08-19T07:50:29.759Z] [ERROR]
[2022-08-19T07:50:29.759Z] [ERROR] After correcting the problems, you can resume the build with the command
[2022-08-19T07:50:29.759Z] [ERROR] mvn -rf :drools-model-codegen
[2022-08-19T07:50:30.020Z] ::error title= [kiegroup/drools] [Execution ERROR]::mvn clean install -Dquickly -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false dependency:tree -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B -s /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.downstream.kogito-apps@tmp/config5363396342004013835tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true
[2022-08-19T07:50:30.020Z] [INFO] Archive artifact won't be executed
[2022-08-19T07:50:30.020Z] ::group::[Pull Request Flow] Execution Summary...
[2022-08-19T07:50:30.020Z] [INFO] ----------------------------------------------
[2022-08-19T07:50:30.020Z] [INFO] [kiegroup/drools]. Execution Result: error. Time: 3m 0.9s (180927 ms)
[2022-08-19T07:50:30.020Z] [INFO] ----------------------------------------------
[2022-08-19T07:50:30.020Z] ::endgroup::
[2022-08-19T07:50:30.020Z] [ERROR] [kiegroup/drools] error executing command: 'mvn clean install -Dquickly -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false dependency:tree -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B -s /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.downstream.kogito-apps@tmp/config5363396342004013835tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true'. Message: Error: The process '/opt/tools/apache-maven-3.8.6/bin/mvn' failed with exit code 1
[2022-08-19T07:50:30.021Z] [ERROR] Command executions have failed, please review latest execution Error: [kiegroup/drools] error executing command: 'mvn clean install -Dquickly -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false dependency:tree -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B -s /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.downstream.kogito-apps@tmp/config5363396342004013835tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true'. Message: Error: The process '/opt/tools/apache-maven-3.8.6/bin/mvn' failed with exit code 1
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] }
[2022-08-19T07:50:30.098Z] Deleting 1 temporary files
[Pipeline] // configFileProvider
[Pipeline] }
[Pipeline] // script
Post stage
[Pipeline] junit
[2022-08-19T07:50:30.191Z] Recording test results
[2022-08-19T07:50:31.449Z] No test report files were found. Configuration error?
Error when executing always post condition:
Also: hudson.remoting.Channel$CallSiteStackTrace: Remote call to rhos-01-kie-psi-rhel7-xlarge-302
at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1797)
at hudson.remoting.UserRequest$ExceptionResponse.retrieve(UserRequest.java:356)
at hudson.remoting.Channel.call(Channel.java:1001)
at hudson.FilePath.act(FilePath.java:1166)
at hudson.FilePath.act(FilePath.java:1155)
at hudson.tasks.junit.JUnitParser.parseResult(JUnitParser.java:107)
at hudson.tasks.junit.JUnitResultArchiver.parse(JUnitResultArchiver.java:153)
at hudson.tasks.junit.JUnitResultArchiver.parseAndSummarize(JUnitResultArchiver.java:247)
at hudson.tasks.junit.pipeline.JUnitResultsStepExecution.run(JUnitResultsStepExecution.java:63)
at hudson.tasks.junit.pipeline.JUnitResultsStepExecution.run(JUnitResultsStepExecution.java:29)
at org.jenkinsci.plugins.workflow.steps.SynchronousNonBlockingStepExecution.lambda$start$0(SynchronousNonBlockingStepExecution.java:47)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
hudson.AbortException: No test report files were found. Configuration error?
at hudson.tasks.junit.JUnitParser$ParseResultCallable.invoke(JUnitParser.java:154)
at hudson.FilePath$FileCallableWrapper.call(FilePath.java:3338)
at hudson.remoting.UserRequest.perform(UserRequest.java:211)
at hudson.remoting.UserRequest.perform(UserRequest.java:54)
at hudson.remoting.Request$2.run(Request.java:376)
at hudson.remoting.InterceptingExecutorService.lambda$wrap$0(InterceptingExecutorService.java:78)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:750)

[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2022-08-19T07:50:31.900Z] + rm -rf console.log
[Pipeline] sh

kie-ci3 avatar Aug 19 '22 07:08 kie-ci3

(tests) - drools job #442 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/job/drools.tests.drools/442/display/redirect

Test results:

  • PASSED: 7526
  • FAILED: 0

Those are the test failures: none

See console log:

Console Logs [2022-08-19T08:10:29.061Z] [INFO] Drools :: Wiring :: Dynamic ........................ SUCCESS [ 4.475 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: KieSession ............................... SUCCESS [ 13.935 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: ECJ ...................................... SUCCESS [ 8.911 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: Test Utility Classes ........................ SUCCESS [ 5.942 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Compiler ................................. SUCCESS [ 16.742 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Model :: Parent .......................... SUCCESS [ 0.075 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Codegen :: Common ........................ SUCCESS [ 3.654 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Canonical Model .......................... SUCCESS [ 13.447 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Model :: Compiler ........................ SUCCESS [ 10.822 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: MVEL Parser .............................. SUCCESS [ 11.907 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: MVEL Compiler ............................ SUCCESS [ 13.136 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Commands ................................. SUCCESS [ 6.799 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: XML Support .............................. SUCCESS [ 8.299 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Truth Maintenance System ................. SUCCESS [ 6.435 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: MVEL ..................................... SUCCESS [ 16.448 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Templates ................................ SUCCESS [ 9.127 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Decision Tables .......................... SUCCESS [ 20.851 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Model :: Codegen ......................... FAILURE [ 9.121 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Rule Units :: Implementation ............. SKIPPED
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Legacy Test Util ......................... SUCCESS [ 6.153 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Beliefs .................................. SUCCESS [ 8.889 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Serialization :: Protobuf ................ SUCCESS [ 30.813 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools Persistence projects ........................ SUCCESS [ 0.034 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Persistence :: API ....................... SUCCESS [ 3.669 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Persistence :: JPA ....................... SUCCESS [ 49.449 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Traits ................................... SUCCESS [ 51.860 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Verifier ................................. SUCCESS [ 0.083 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools Workbench - Verifier Api .................... SUCCESS [ 2.669 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Verifier DRL ............................. SUCCESS [ 51.893 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools Workbench - Verifier Core ................... SUCCESS [ 12.011 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools examples .................................... SUCCESS [ 8.116 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: CI .......................................... SUCCESS [01:30 min]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Engine :: Classic ........................ SUCCESS [ 0.148 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: API examples ............................. SUCCESS [ 0.050 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: API examples :: Default KieSession ....... SUCCESS [ 11.054 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: API examples :: Named KieSession ......... SUCCESS [ 6.109 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: API examples :: KieBase Inclusion ........ SUCCESS [ 6.353 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: API examples :: Default KieSession From File SUCCESS [ 6.481 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: API examples :: Named KieSession from File SUCCESS [ 7.094 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: API examples :: KieModule from Multiple Files SUCCESS [ 7.376 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: examples :: KieFileSystemExample ......... SUCCESS [ 6.748 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: API examples :: KieModuleModel Example ... SUCCESS [ 7.854 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: API examples :: KieContainer from KieRepo SUCCESS [ 16.155 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: API examples :: Multiple KieBases ........ SUCCESS [ 4.827 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: API examples :: Reactive KieSession ...... SUCCESS [ 6.867 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Test Coverage ............................ SUCCESS [ 0.055 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Test Coverage :: Standalone reproducers .. SUCCESS [ 0.055 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Parent SUCCESS [ 0.052 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Domain SUCCESS [ 2.834 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: KJar SUCCESS [ 0.087 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Test Coverage :: KIE-CI with Domain classes :: Tests SUCCESS [ 9.114 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Parent SUCCESS [ 0.041 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Domain SUCCESS [ 2.490 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: KJar SUCCESS [ 0.060 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Test Coverage :: KIE-CI without Domain classes :: Tests SUCCESS [ 7.893 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Test Coverage :: Test Suite .............. SKIPPED
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Engine ................................... SKIPPED
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Alpha Network Compiler ................... SKIPPED
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Test Coverage :: Compiler integration tests SKIPPED
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Test Coverage :: Integration tests without mvel SKIPPED
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Test Coverage :: Integration tests without TMS SKIPPED
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Test Coverage :: Integration tests without xml SKIPPED
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Scenario Simulation Parent ............... SUCCESS [ 0.045 s]
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Scenario Simulation API .................. SUCCESS [ 6.434 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: Decision Model Notation ..................... SUCCESS [ 0.055 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: Decision Model Notation :: Model ............ SUCCESS [ 8.908 s]
[2022-08-19T08:10:29.061Z] [INFO] Efesto ............................................. SUCCESS [ 2.583 s]
[2022-08-19T08:10:29.061Z] [INFO] Efesto :: Core ..................................... SUCCESS [ 0.070 s]
[2022-08-19T08:10:29.061Z] [INFO] Efesto :: Common :: Api ............................ SUCCESS [ 6.535 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: Decision Model Notation :: API .............. SUCCESS [ 3.319 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: Decision Model Notation :: FEEL ............. SUCCESS [01:44 min]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: Decision Model Notation :: Backend .......... SUCCESS [ 13.064 s]
[2022-08-19T08:10:29.061Z] [INFO] Efesto :: Runtime :: Manager ....................... SUCCESS [ 0.070 s]
[2022-08-19T08:10:29.061Z] [INFO] Efesto :: Runtime :: Manager :: Api ................ SUCCESS [ 4.909 s]
[2022-08-19T08:10:29.061Z] [INFO] Efesto :: Compilation :: Manager ................... SUCCESS [ 0.065 s]
[2022-08-19T08:10:29.061Z] [INFO] Efesto :: Compilation :: Manager :: Api ............ SUCCESS [ 2.997 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML ........................................ SUCCESS [ 0.116 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: API ................................. SUCCESS [ 6.509 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Commons ............................. SUCCESS [ 7.439 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Evaluator ........................... SUCCESS [ 0.066 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Evaluator :: API .................... SUCCESS [ 2.961 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Evaluator :: Core ................... SUCCESS [ 6.443 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Compiler ............................ SUCCESS [ 0.065 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Compiler :: API ..................... SUCCESS [ 5.956 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Compiler :: Commons ................. SUCCESS [ 16.688 s]
[2022-08-19T08:10:29.061Z] [INFO] Efesto :: Compilation :: Manager :: Core ........... SUCCESS [ 4.511 s]
[2022-08-19T08:10:29.061Z] [INFO] Efesto :: Common :: Utils .......................... SUCCESS [ 2.905 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Compiler :: Core .................... SUCCESS [ 4.719 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Evaluator :: Utils .................. SUCCESS [ 2.599 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Models .............................. SUCCESS [ 0.064 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Models :: Tree ...................... SUCCESS [ 0.058 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Models :: Tree :: Model ............. SUCCESS [ 3.827 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Models :: Tree :: Compiler .......... SUCCESS [ 8.192 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Models :: Tree :: Evaluator ......... SUCCESS [ 4.006 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: Decision Model Notation :: Core ............. SKIPPED
[2022-08-19T08:10:29.061Z] [INFO] Drools :: Scenario Simulation Backend .............. SKIPPED
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Models :: Drools .................... SUCCESS [ 0.476 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Models :: Drools :: Common .......... SKIPPED
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Models :: Regression ................ SUCCESS [ 0.096 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Models :: Regression :: Model ....... SUCCESS [ 5.429 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Models :: Regression :: Compiler .... SUCCESS [ 10.571 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Models :: Regression :: Evaluator ... SUCCESS [ 3.918 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Models :: Scorecard ................. SUCCESS [ 0.088 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Model ........ SUCCESS [ 4.409 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Compiler ..... SUCCESS [ 9.054 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Evaluator .... SUCCESS [ 4.046 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Models :: Mining .................... SUCCESS [ 0.085 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Models :: Mining :: Model ........... SUCCESS [ 5.102 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Models :: Mining :: Compiler ........ SKIPPED
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Models :: Mining :: Evaluator ....... SUCCESS [ 4.925 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Models :: Clustering ................ SUCCESS [ 0.055 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Models :: Clustering :: Model ....... SUCCESS [ 4.534 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Models :: Clustering :: Compiler .... SUCCESS [ 8.244 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Models :: Clustering :: Evaluator ... SUCCESS [ 3.872 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Dependencies ........................ SKIPPED
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree ............ SUCCESS [ 0.108 s]
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Model ... SKIPPED
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Compiler SKIPPED
[2022-08-19T08:10:29.061Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Evaluator SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard ....... SUCCESS [ 0.081 s]
[2022-08-19T08:10:29.062Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Model SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Compiler SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Evaluator SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] KIE :: DRL ......................................... SUCCESS [ 0.039 s]
[2022-08-19T08:10:29.062Z] [INFO] KIE :: DRL :: Compilation :: Common ................ SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] KIE :: DRL :: Runtime :: Common .................... SUCCESS [ 6.367 s]
[2022-08-19T08:10:29.062Z] [INFO] KIE :: DRL :: Implementations ...................... SUCCESS [ 0.039 s]
[2022-08-19T08:10:29.062Z] [INFO] KIE :: DRL :: MapInput ............................. SUCCESS [ 0.042 s]
[2022-08-19T08:10:29.062Z] [INFO] KIE :: DRL :: MapInput :: Runtime .................. SUCCESS [ 6.584 s]
[2022-08-19T08:10:29.062Z] [INFO] Efesto :: Runtime :: Manager :: Core ............... SUCCESS [ 3.773 s]
[2022-08-19T08:10:29.062Z] [INFO] Drools :: Scenario Simulation Integration Test ..... SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] Drools :: Metric Analysis .......................... SUCCESS [ 9.368 s]
[2022-08-19T08:10:29.062Z] [INFO] Drools :: Impact Analysis .......................... SUCCESS [ 0.044 s]
[2022-08-19T08:10:29.062Z] [INFO] Drools :: Impact Analysis :: Model ................. SUCCESS [ 2.784 s]
[2022-08-19T08:10:29.062Z] [INFO] Drools :: Impact Analysis :: Parser ................ SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] Drools :: Impact Analysis Graph .................... SUCCESS [ 0.036 s]
[2022-08-19T08:10:29.062Z] [INFO] Drools :: Impact Analysis Graph :: Common .......... SUCCESS [ 2.743 s]
[2022-08-19T08:10:29.062Z] [INFO] Drools :: Impact Analysis Graph :: Graphviz ........ SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] Drools :: Impact Analysis :: Integration Tests ..... SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] Drools :: ReteDiagram .............................. SUCCESS [ 14.970 s]
[2022-08-19T08:10:29.062Z] [INFO] KIE :: Efesto :: Dependencies ...................... SUCCESS [ 0.088 s]
[2022-08-19T08:10:29.062Z] [INFO] KIE :: DRL :: KieSession :: Local .................. SUCCESS [ 0.034 s]
[2022-08-19T08:10:29.062Z] [INFO] KIE :: DRL :: KieSession :: Local :: Runtime ....... SUCCESS [ 2.502 s]
[2022-08-19T08:10:29.062Z] [INFO] KIE :: DRL :: API .................................. SUCCESS [ 4.377 s]
[2022-08-19T08:10:29.062Z] [INFO] KIE :: DRL :: Tests ................................ SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] KIE :: Decision Model Notation :: Internal utils for Validation bootstrap SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] KIE :: Decision Model Notation :: Validation ....... SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] KIE :: Decision Model Notation :: FEEL DMN GWT ..... SUCCESS [ 9.312 s]
[2022-08-19T08:10:29.062Z] [INFO] KIE :: Decision Model Notation :: FEEL DMN GWT SHOWCASE SUCCESS [01:38 min]
[2022-08-19T08:10:29.062Z] [INFO] KIE :: Decision Model Notation :: FEEL DMN GWT FUNCTIONS SUCCESS [ 9.209 s]
[2022-08-19T08:10:29.062Z] [INFO] KIE :: Decision Model Notation :: OpenAPI (OAS) utilities SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] KIE :: Decision Model Notation :: TCK .............. SUCCESS [ 0.184 s]
[2022-08-19T08:10:29.062Z] [INFO] KIE :: Decision Model Notation :: Legacy tests (previous DMN versions) SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] KIE :: Decision Model Notation :: Trisotech extensions support SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] KIE :: Decision Model Notation :: Signavio extensions support SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] KiE :: Decision Model Notation - PMML Tests :: Parent SUCCESS [ 0.067 s]
[2022-08-19T08:10:29.062Z] [INFO] KiE :: Decision Model Notation - PMML Tests ........ SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] KiE :: Decision Model Notation - PMML Trusty Tests . SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] KIE :: Decision Model Notation :: xls2dmn CLI Utility SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] KIE :: Decision Model Notation :: JSR-223 JQ ScriptEngine SUCCESS [ 5.689 s]
[2022-08-19T08:10:29.062Z] [INFO] KIE :: Decision Model Notation :: Core JSR-223 ..... SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn parent SUCCESS [ 0.033 s]
[2022-08-19T08:10:29.062Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn utilities SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] KIE :: Decision Model Notation :: ruleset2dmn CLI .. SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] KIE :: PMML :: Models :: Tests ..................... SUCCESS [ 1.433 s]
[2022-08-19T08:10:29.062Z] [INFO] KIE :: PMML :: Models :: Regression :: Tests ....... SUCCESS [ 10.736 s]
[2022-08-19T08:10:29.062Z] [INFO] KIE :: PMML :: Models :: Drools :: Tree :: Tests ... SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] KIE :: PMML :: Models :: Drools :: Scorecard :: Tests SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] KIE :: PMML :: Models :: Mining :: Tests ........... SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] KIE :: PMML :: Models :: Tree :: Tests ............. SUCCESS [ 7.580 s]
[2022-08-19T08:10:29.062Z] [INFO] KIE :: PMML :: Models :: Clustering :: Tests ....... SUCCESS [ 7.143 s]
[2022-08-19T08:10:29.062Z] [INFO] KIE :: PMML :: Models :: Scorecard :: Tests ........ SUCCESS [ 8.450 s]
[2022-08-19T08:10:29.062Z] [INFO] KIE :: Maven Plugin ................................ SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] KIE :: Maven Archetypes ............................ SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] KIE :: Drools Maven Archetype ...................... SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] KIE :: Drools DMN engine Maven Archetype ........... SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] KIE :: Drools Maven Archetype with Executable Model and RuleUnit SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] KIE :: Drools Maven Archetype with Executable Model and traditional rule style SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] KIE :: KJAR Archetype .............................. SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] KIE :: Model Archetype ............................. SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] KIE :: Service Spring Boot Archetype ............... SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] Drools :: Quarkus Extension ........................ SUCCESS [ 0.059 s]
[2022-08-19T08:10:29.062Z] [INFO] Drools :: Quarkus Extension :: Util :: Deployment .. SUCCESS [ 10.301 s]
[2022-08-19T08:10:29.062Z] [INFO] Drools :: Quarkus Extension :: Runtime ............. SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] Drools :: Quarkus Extension :: Deployment .......... SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] Drools :: Quarkus Extension :: Integration Test .... SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] Drools :: Quarkus Extension :: Integration Test :: Hotreload SKIPPED
[2022-08-19T08:10:29.062Z] [INFO] Drools documentation ............................... SUCCESS [01:35 min]
[2022-08-19T08:10:29.062Z] [INFO] Drools distribution ................................ SUCCESS [ 18.920 s]
[2022-08-19T08:10:29.062Z] [INFO] ------------------------------------------------------------------------
[2022-08-19T08:10:29.062Z] [INFO] BUILD FAILURE
[2022-08-19T08:10:29.062Z] [INFO] ------------------------------------------------------------------------
[2022-08-19T08:10:29.062Z] [INFO] Total time: 23:24 min
[2022-08-19T08:10:29.062Z] [INFO] Finished at: 2022-08-19T04:10:27-04:00
[2022-08-19T08:10:29.062Z] [INFO] ------------------------------------------------------------------------
[2022-08-19T08:10:29.062Z] [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:testCompile (default-testCompile) on project drools-model-codegen: Compilation failure: Compilation failure:
[2022-08-19T08:10:29.062Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/drools/drools-model/drools-model-codegen/src/test/java/org/drools/model/codegen/execmodel/NamedConsequencesTest.java:[646,9] cannot find symbol
[2022-08-19T08:10:29.062Z] [ERROR] symbol: method assertEquals(int,int)
[2022-08-19T08:10:29.062Z] [ERROR] location: class org.drools.model.codegen.execmodel.NamedConsequencesTest
[2022-08-19T08:10:29.062Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/drools/drools-model/drools-model-codegen/src/test/java/org/drools/model/codegen/execmodel/NamedConsequencesTest.java:[647,9] cannot find symbol
[2022-08-19T08:10:29.062Z] [ERROR] symbol: method assertTrue(boolean)
[2022-08-19T08:10:29.062Z] [ERROR] location: class org.drools.model.codegen.execmodel.NamedConsequencesTest
[2022-08-19T08:10:29.062Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/drools/drools-model/drools-model-codegen/src/test/java/org/drools/model/codegen/execmodel/NamedConsequencesTest.java:[648,9] cannot find symbol
[2022-08-19T08:10:29.062Z] [ERROR] symbol: method assertTrue(boolean)
[2022-08-19T08:10:29.062Z] [ERROR] location: class org.drools.model.codegen.execmodel.NamedConsequencesTest
[2022-08-19T08:10:29.062Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/drools/drools-model/drools-model-codegen/src/test/java/org/drools/model/codegen/execmodel/NamedConsequencesTest.java:[682,9] cannot find symbol
[2022-08-19T08:10:29.062Z] [ERROR] symbol: method assertEquals(int,int)
[2022-08-19T08:10:29.062Z] [ERROR] location: class org.drools.model.codegen.execmodel.NamedConsequencesTest
[2022-08-19T08:10:29.062Z] [ERROR] /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.drools/bc/kiegroup_drools/drools/drools-model/drools-model-codegen/src/test/java/org/drools/model/codegen/execmodel/NamedConsequencesTest.java:[683,9] cannot find symbol
[2022-08-19T08:10:29.062Z] [ERROR] symbol: method assertTrue(boolean)
[2022-08-19T08:10:29.062Z] [ERROR] location: class org.drools.model.codegen.execmodel.NamedConsequencesTest
[2022-08-19T08:10:29.062Z] [ERROR] -> [Help 1]
[2022-08-19T08:10:29.062Z] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:testCompile (default-testCompile) on project drools-model-codegen: Compilation failure
[2022-08-19T08:10:29.062Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:375)
[2022-08-19T08:10:29.062Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2022-08-19T08:10:29.062Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2022-08-19T08:10:29.062Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2022-08-19T08:10:29.062Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2022-08-19T08:10:29.062Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2022-08-19T08:10:29.062Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2022-08-19T08:10:29.062Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2022-08-19T08:10:29.062Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2022-08-19T08:10:29.062Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:294)
[2022-08-19T08:10:29.062Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2022-08-19T08:10:29.062Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2022-08-19T08:10:29.062Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2022-08-19T08:10:29.062Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2022-08-19T08:10:29.062Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2022-08-19T08:10:29.062Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2022-08-19T08:10:29.062Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2022-08-19T08:10:29.062Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2022-08-19T08:10:29.062Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2022-08-19T08:10:29.063Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2022-08-19T08:10:29.063Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2022-08-19T08:10:29.063Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2022-08-19T08:10:29.063Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2022-08-19T08:10:29.063Z] Caused by: org.apache.maven.plugin.compiler.CompilationFailureException: Compilation failure
[2022-08-19T08:10:29.063Z] at org.apache.maven.plugin.compiler.AbstractCompilerMojo.execute (AbstractCompilerMojo.java:1220)
[2022-08-19T08:10:29.063Z] at org.apache.maven.plugin.compiler.TestCompilerMojo.execute (TestCompilerMojo.java:180)
[2022-08-19T08:10:29.063Z] at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
[2022-08-19T08:10:29.063Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 (MojoExecutor.java:370)
[2022-08-19T08:10:29.063Z] at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute (MojoExecutor.java:351)
[2022-08-19T08:10:29.063Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
[2022-08-19T08:10:29.063Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:171)
[2022-08-19T08:10:29.063Z] at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:163)
[2022-08-19T08:10:29.063Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
[2022-08-19T08:10:29.063Z] at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
[2022-08-19T08:10:29.063Z] at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
[2022-08-19T08:10:29.063Z] at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
[2022-08-19T08:10:29.063Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:294)
[2022-08-19T08:10:29.063Z] at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
[2022-08-19T08:10:29.063Z] at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
[2022-08-19T08:10:29.063Z] at org.apache.maven.cli.MavenCli.execute (MavenCli.java:960)
[2022-08-19T08:10:29.063Z] at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:293)
[2022-08-19T08:10:29.063Z] at org.apache.maven.cli.MavenCli.main (MavenCli.java:196)
[2022-08-19T08:10:29.063Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
[2022-08-19T08:10:29.063Z] at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
[2022-08-19T08:10:29.063Z] at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
[2022-08-19T08:10:29.063Z] at java.lang.reflect.Method.invoke (Method.java:566)
[2022-08-19T08:10:29.063Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
[2022-08-19T08:10:29.063Z] at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
[2022-08-19T08:10:29.063Z] at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
[2022-08-19T08:10:29.063Z] at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
[2022-08-19T08:10:29.063Z] [ERROR]
[2022-08-19T08:10:29.063Z] [ERROR] Re-run Maven using the -X switch to enable full debug logging.
[2022-08-19T08:10:29.063Z] [ERROR]
[2022-08-19T08:10:29.063Z] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[2022-08-19T08:10:29.063Z] [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[2022-08-19T08:10:29.063Z] [ERROR]
[2022-08-19T08:10:29.063Z] [ERROR] After correcting the problems, you can resume the build with the command
[2022-08-19T08:10:29.063Z] [ERROR] mvn -rf :drools-model-codegen
[2022-08-19T08:10:29.063Z] ::error title= [kiegroup/drools] [Execution ERROR]::mvn -f drools/pom.xml clean install -Dfull -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false dependency:tree -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -Prun-code-coverage -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B -s /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.drools@tmp/config6198469698804859060tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true
[2022-08-19T08:10:29.063Z] [INFO] Archive artifact won't be executed
[2022-08-19T08:10:29.063Z] ::group::[Pull Request Flow] Execution Summary...
[2022-08-19T08:10:29.063Z] [INFO] ----------------------------------------------
[2022-08-19T08:10:29.063Z] [INFO] [kiegroup/drools]. Execution Result: error. Time: 23m 27.3s (1407356 ms)
[2022-08-19T08:10:29.063Z] [INFO] ----------------------------------------------
[2022-08-19T08:10:29.063Z] ::endgroup::
[2022-08-19T08:10:29.063Z] [ERROR] [kiegroup/drools] error executing command: 'mvn -f drools/pom.xml clean install -Dfull -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false dependency:tree -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -Prun-code-coverage -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B -s /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.drools@tmp/config6198469698804859060tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true'. Message: Error: The process '/opt/tools/apache-maven-3.8.6/bin/mvn' failed with exit code 1
[2022-08-19T08:10:29.063Z] [ERROR] Command executions have failed, please review latest execution Error: [kiegroup/drools] error executing command: 'mvn -f drools/pom.xml clean install -Dfull -nsu -ntp -fae -e -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false dependency:tree -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=3 -Prun-code-coverage -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B -s /home/jenkins/workspace/KIE/kogito/main/pullrequest/drools.tests.drools@tmp/config6198469698804859060tmp -Dmaven.wagon.http.ssl.insecure=true -Dmaven.test.failure.ignore=true'. Message: Error: The process '/opt/tools/apache-maven-3.8.6/bin/mvn' failed with exit code 1
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] }
[2022-08-19T08:10:30.600Z] Deleting 1 temporary files
[Pipeline] // configFileProvider
[Pipeline] }
[Pipeline] // script
Post stage
[Pipeline] junit
[2022-08-19T08:10:30.877Z] Recording test results
[2022-08-19T08:10:36.689Z] [Checks API] No suitable checks publisher found.
[Pipeline] archiveArtifacts
[2022-08-19T08:10:36.793Z] Archiving artifacts
[Pipeline] script
[Pipeline] {
[Pipeline] sh
[2022-08-19T08:10:38.658Z] + rm -rf console.log
[Pipeline] sh
[2022-08-19T08:10:39.157Z] + wget --no-check-certificate -qO - https://eng-jenkins-csb-business-automation.apps.ocp-c1.prod.psi.redhat.com/job/KIE/job/kogito/job/main/job/pullrequest/job/drools.tests.drools/442/consoleText
[2022-08-19T08:10:39.157Z] + tail -n 300

kie-ci3 avatar Aug 19 '22 08:08 kie-ci3

This was moved to a lower priority issue. Closing this PR at the moment. https://issues.redhat.com/browse/DROOLS-6290

tkobayas avatar Aug 22 '22 01:08 tkobayas