tkobayas commented on PR #6813:
URL:
https://github.com/apache/incubator-kie-drools/pull/6813#issuecomment-5001041289
See `CI :: Build` job failures:
```
2026-07-17T07:34:36.3097284Z ##[group]Run echo "STEP: Merge PR changes
(squashed)"
2026-07-17T07:34:36.3097604Z [36;1mecho "STEP: Merge PR changes
(squashed)"[0m
2026-07-17T07:34:36.3097844Z [36;1mcd .[0m
2026-07-17T07:34:36.3098013Z [36;1mif [ Object ]; then[0m
2026-07-17T07:34:36.3098300Z [36;1m USER=$(node -e
"console.log('$PR_HEAD_LABEL'.match(/(.+)\:(.+)$/)[1])")[0m
2026-07-17T07:34:36.3098607Z [36;1m[0m
2026-07-17T07:34:36.3098798Z [36;1m echo "Merge changes from
$USER/$HEAD_REF"[0m
2026-07-17T07:34:36.3099146Z [36;1m git remote add $USER
https://github.com/$USER/$PR_HEAD_REPO_NAME.git[0m
2026-07-17T07:34:36.3099469Z [36;1m git fetch $USER $HEAD_REF[0m
2026-07-17T07:34:36.3099682Z [36;1m[0m
2026-07-17T07:34:36.3099846Z [36;1m echo "Before merging..."[0m
2026-07-17T07:34:36.3100063Z [36;1m git log -n 1[0m
2026-07-17T07:34:36.3100304Z [36;1m echo "base_sha=$(git rev-parse HEAD)"
>> $GITHUB_OUTPUT[0m
2026-07-17T07:34:36.3100576Z [36;1m[0m
2026-07-17T07:34:36.3100754Z [36;1m git merge --squash $USER/$HEAD_REF[0m
2026-07-17T07:34:36.3100992Z [36;1m git commit --no-edit[0m
2026-07-17T07:34:36.3101182Z [36;1m[0m
2026-07-17T07:34:36.3101344Z [36;1m echo "After merging..."[0m
2026-07-17T07:34:36.3101548Z [36;1m git log -n 1[0m
2026-07-17T07:34:36.3101779Z [36;1m echo "head_sha=$(git rev-parse HEAD)"
>> $GITHUB_OUTPUT[0m
2026-07-17T07:34:36.3102035Z [36;1melse[0m
2026-07-17T07:34:36.3102227Z [36;1m echo "Skip merge, not a pull
request"[0m
2026-07-17T07:34:36.3102758Z [36;1m echo "base_sha=$(git rev-parse
HEAD^1)" >> $GITHUB_OUTPUT[0m
2026-07-17T07:34:36.3103070Z [36;1m echo "head_sha=$(git rev-parse HEAD)"
>> $GITHUB_OUTPUT[0m
2026-07-17T07:34:36.3103329Z [36;1mfi[0m
2026-07-17T07:34:36.3144844Z shell: /usr/bin/bash --noprofile --norc -e -o
pipefail {0}
2026-07-17T07:34:36.3145260Z env:
2026-07-17T07:34:36.3145495Z CHANGED_FILES_FILE:
/home/runner/work/_temp/changed-files.txt
2026-07-17T07:34:36.3145865Z MAVEN_PL_AFFECTED_FILE:
/home/runner/work/_temp/maven-pl-affected.txt
2026-07-17T07:34:36.3146215Z MAVEN_PL_UPSTREAM_FILE:
/home/runner/work/_temp/maven-pl-upstream.txt
2026-07-17T07:34:36.3146558Z MAVEN_PL_CHANGED_FILE:
/home/runner/work/_temp/maven-pl-changed.txt
2026-07-17T07:34:36.3146914Z DEP_GRAPH_EXTRACTOR__OUTPUT_FILE:
/home/runner/work/_temp/dep-graph.tsv
2026-07-17T07:34:36.3147210Z PR_HEAD_REPO_NAME: drools
2026-07-17T07:34:36.3147410Z PR_HEAD_LABEL: tkobayas:fix-crlf
2026-07-17T07:34:36.3147613Z HEAD_REF: fix-crlf
2026-07-17T07:34:36.3147784Z ##[endgroup]
2026-07-17T07:34:36.3206601Z STEP: Merge PR changes (squashed)
2026-07-17T07:34:36.4043448Z Merge changes from tkobayas/fix-crlf
2026-07-17T07:34:36.6151710Z From https://github.com/tkobayas/drools
2026-07-17T07:34:36.6152136Z * branch fix-crlf ->
FETCH_HEAD
2026-07-17T07:34:36.6152721Z * [new branch] fix-crlf ->
tkobayas/fix-crlf
2026-07-17T07:34:36.6199661Z Before merging...
2026-07-17T07:34:36.6216358Z commit 6cb1692312e1cd58d39fc525c4e3fb755caf3e50
2026-07-17T07:34:36.6216999Z Author: Daniel Clark
<[email protected]>
2026-07-17T07:34:36.6217415Z Date: Fri Jul 17 09:13:25 2026 +0200
2026-07-17T07:34:36.6217697Z
2026-07-17T07:34:36.6218069Z Incubator kie drools 6782 declared extends
cross package (#6785)
2026-07-17T07:34:36.6218496Z
2026-07-17T07:34:36.6219072Z [incubator-kie-drools-6782] Include
inherited fields when a declared type extends a declared type in another package
2026-07-17T07:34:36.6219835Z
2026-07-17T07:34:36.6220284Z Generalizes inherited-field resolution to
follow the declared supertype chain
2026-07-17T07:34:36.6221200Z across packages (searching all package
descriptors of the build and using each
2026-07-17T07:34:36.6221604Z declaring package's own type resolver), and
at the end of the chain into a
2026-07-17T07:34:36.6222000Z resolvable Java superclass. Plumbs the
build's package descriptors and the
2026-07-17T07:34:36.6222588Z PackageRegistryManager through
POJOGenerator and DeclaredTypeCompilationPhase so
2026-07-17T07:34:36.6223018Z DescrTypeDefinition can resolve supertypes
declared in other packages.
2026-07-17T07:34:36.6223309Z
2026-07-17T07:34:36.6223562Z Stacked on #6780
(incubator-kie-drools-6779): the new inheritedFieldsOf subsumes
2026-07-17T07:34:36.6223965Z the Java-superclass logic introduced there
and adds the cross-package case.
2026-07-17T07:34:36.6224252Z
2026-07-17T07:34:36.6224474Z Co-Authored-By: Claude Opus 4.8 (1M
context) <[email protected]>
2026-07-17T07:34:36.6224752Z
2026-07-17T07:34:36.6225056Z * Resolve cross-package declared supertype
on explicit codegen path; disambiguate by import
2026-07-17T07:34:36.6225400Z
2026-07-17T07:34:36.6225588Z Follow-up on #6785 addressing Copilot
review feedback:
2026-07-17T07:34:36.6225826Z
2026-07-17T07:34:36.6226176Z - ExplicitCanonicalModelCompiler now passes
the multi-package context
2026-07-17T07:34:36.6226593Z (packages, pkgRegistryManager) to
POJOGenerator, so a declared type that
2026-07-17T07:34:36.6226978Z extends a declared type in another
package also gets a correct full-arg
2026-07-17T07:34:36.6227351Z constructor on the build-time codegen
path (kie-maven-plugin / Quarkus /
2026-07-17T07:34:36.6227675Z SpringBoot), not just the
KnowledgeBuilder path.
2026-07-17T07:34:36.6227908Z
2026-07-17T07:34:36.6228156Z - DescrTypeDefinition no longer resolves a
declared supertype by first match
2026-07-17T07:34:36.6228559Z on simple name across all packages. It
prefers a local declaration, then an
2026-07-17T07:34:36.6228954Z explicit qualifier or single-type import
to pin the declaring package, and
2026-07-17T07:34:36.6229357Z falls back to a namespace-ordered
(deterministic) scan - so a same-simple-name
2026-07-17T07:34:36.6229898Z type in an unrelated package is never
picked and resolution no longer depends
2026-07-17T07:34:36.6230293Z on package iteration order. Also threads
the correct per-package TypeResolver
2026-07-17T07:34:36.6230602Z through the supertype chain.
2026-07-17T07:34:36.6230797Z
2026-07-17T07:34:36.6231077Z - Tests:
RuleCodegenTest#generateCrossPackageDeclaredInheritanceConstructor
2026-07-17T07:34:36.6231461Z covers the ExplicitCanonicalModelCompiler
path;
2026-07-17T07:34:36.6231829Z
DeclaredTypesTest#testDeclaredExtendsAmbiguousSimpleNameResolvedByImport
2026-07-17T07:34:36.6232224Z covers same-simple-name resolution by
import (both engines).
2026-07-17T07:34:36.6232799Z
2026-07-17T07:34:36.6233039Z Co-Authored-By: Claude Opus 4.8 (1M
context) <[email protected]>
2026-07-17T07:34:36.6233323Z
2026-07-17T07:34:36.6233475Z ---------
2026-07-17T07:34:36.6233630Z
2026-07-17T07:34:36.6233849Z Co-authored-by: Claude Opus 4.8 (1M
context) <[email protected]>
2026-07-17T07:34:36.8013126Z warning: in the working copy of
'drools-commands/src/main/java/org/drools/commands/runtime/rule/FireUntilHaltCommand.java',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8014472Z warning: in the working copy of
'drools-serialization-protobuf/src/test/java/org/drools/serialization/protobuf/ObjectMarshallingStrategyStoreTest.java',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8015854Z warning: in the working copy of
'drools-test-coverage/test-compiler-integration/src/test/java/org/drools/compiler/integrationtests/ErrorOnInsertLogicalTest.java',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8017504Z warning: in the working copy of
'kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_1/0001-input-data-string.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8018564Z warning: in the working copy of
'kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_1/0002-input-data-number.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8019591Z warning: in the working copy of
'kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_1/0003-input-data-string-allowed-values.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8020727Z warning: in the working copy of
'kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_1/0005-decision-list.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8021670Z warning: in the working copy of
'kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_2/decision-list.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8022982Z warning: in the working copy of
'kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_3/Chapter
11 Example.dmn', CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8030152Z warning: in the working copy of
'kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_3/Loan
info.dmn', CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8033452Z warning: in the working copy of
'kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_3/Recommended
Loan Products.dmn', CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8036738Z warning: in the working copy of
'kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_3/decision-list.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8037776Z warning: in the working copy of
'kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_3/dmnedge.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8038652Z warning: in the working copy of
'kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_3/group.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8039713Z warning: in the working copy of
'kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_3/simple.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8040867Z warning: in the working copy of
'kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_4/Chapter
11 Example.dmn', CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8048823Z warning: in the working copy of
'kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_4/Loan
info.dmn', CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8051796Z warning: in the working copy of
'kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_4/Recommended
Loan Products.dmn', CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8056726Z warning: in the working copy of
'kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_5/Chapter
11 Example.dmn', CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8063924Z warning: in the working copy of
'kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_5/Loan
info.dmn', CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8067194Z warning: in the working copy of
'kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_5/Recommended
Loan Products.dmn', CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8071230Z warning: in the working copy of
'kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/Slash.dmn', CRLF will
be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8073283Z warning: in the working copy of
'kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/alternative_feel_ns_declaration.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8075058Z warning: in the working copy of
'kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/decisionservices/DSWithImportRequiredInput20180920.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8076649Z warning: in the working copy of
'kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_3/Chapter 11
Example.dmn', CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8084960Z warning: in the working copy of
'kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_3/DMN13-132.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8086392Z warning: in the working copy of
'kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_3/Loan info.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8089689Z warning: in the working copy of
'kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_3/Recommended Loan
Products.dmn', CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8093517Z warning: in the working copy of
'kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_3/simple.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8096729Z warning: in the working copy of
'kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_4/Chapter 11
Example.dmn', CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8104660Z warning: in the working copy of
'kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_4/Loan info.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8108223Z warning: in the working copy of
'kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_4/Recommended Loan
Products.dmn', CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8113955Z warning: in the working copy of
'kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_5/Chapter 11
Example.dmn', CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8121891Z warning: in the working copy of
'kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_5/Loan info.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8125401Z warning: in the working copy of
'kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_5/Recommended Loan
Products.dmn', CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8129804Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/0001-input-data-string-artificial-attributes.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8131764Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/0001-input-data-string-itIT.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8133743Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/0001-input-data-string.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8135500Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/0002-input-data-number.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8137378Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/0003-input-data-string-allowed-values.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8139440Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/0019-flight-rebooking-alternative.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8141515Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/0019-flight-rebooking-bad-example.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8143544Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/0019-flight-rebooking-singleton-lists.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8145467Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/0019-flight-rebooking-uninterpreted.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8147345Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/0019-flight-rebooking.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8149094Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/AllowedValuesChecks.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8150794Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/BoxedContext.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8152619Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/BranchDistribution.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8154334Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/Collect_Hit_Policy.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8156259Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/DROOLS-2813-NPE-BoxedInvocationMissingExpression.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8158192Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/DT_using_variables.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8159942Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/Dinner.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8161583Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/FunctionDefinition.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8163451Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/Get_Viable_Loan_Products.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8165220Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/Input_reuse_in_output.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8166891Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/Instance_of.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8168531Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/InvalidInput.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8170342Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/LoanRecommendationWrongOutputType.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8172566Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/Loan_Prequalification_Condensed_Invalid.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8174342Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/NPE.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8175998Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/Number_and_null_entry.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8177787Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/Person_filtering_by_age.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8179472Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/Simple_Not.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8181110Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/TimeFromDate.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8182784Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/Union_of_letters.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8184500Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/WrongConstraintsInItemDefinition.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8186403Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/alternative_feel_ns_declaration.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8188151Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/calculation1.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8189845Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/car_damage_responsibility.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8191763Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/customer_discount_full.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8193718Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/decisionservices/DecisionServiceABC.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8195486Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/empty_decision.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8197193Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/java_function_context.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8198965Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/java_function_context_with_errors.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8200710Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/loanComparison.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8202519Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/missing_input_data.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8204413Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/pmml_function_context.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8206156Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/today_function_test.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8207869Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/trisotech_namespace.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8209569Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/two_decision_tables.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8211270Z warning: in the working copy of
'kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/yearMonthDuration.dmn',
CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8213119Z warning: in the working copy of
'kie-dmn/kie-dmn-test-resources/src/test/resources/invalid_models/DMNv1_x/multiple/Chapter
11 Example.dmn', CRLF will be replaced by LF the next time Git touches it
2026-07-17T07:34:36.8996862Z error: Your local changes to the following
files would be overwritten by merge:
2026-07-17T07:34:36.8997635Z
drools-commands/src/main/java/org/drools/commands/runtime/rule/FireUntilHaltCommand.java
2026-07-17T07:34:36.8998114Z
drools-distribution/src/main/assembly/scripts/runExamples.bat
2026-07-17T07:34:36.8998677Z
drools-serialization-protobuf/src/test/java/org/drools/serialization/protobuf/ObjectMarshallingStrategyStoreTest.java
2026-07-17T07:34:36.8999389Z
drools-test-coverage/test-compiler-integration/src/test/java/org/drools/compiler/integrationtests/ErrorOnInsertLogicalTest.java
2026-07-17T07:34:36.9000072Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_1/0001-input-data-string.dmn
2026-07-17T07:34:36.9000756Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_1/0002-input-data-number.dmn
2026-07-17T07:34:36.9001515Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_1/0003-input-data-string-allowed-values.dmn
2026-07-17T07:34:36.9002511Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_1/0005-decision-list.dmn
2026-07-17T07:34:36.9003092Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_2/decision-list.dmn
2026-07-17T07:34:36.9003613Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_3/Chapter
11 Example.dmn
2026-07-17T07:34:36.9004122Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_3/Loan
info.dmn
2026-07-17T07:34:36.9004647Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_3/Recommended
Loan Products.dmn
2026-07-17T07:34:36.9005184Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_3/decision-list.dmn
2026-07-17T07:34:36.9005681Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_3/dmnedge.dmn
2026-07-17T07:34:36.9006151Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_3/group.dmn
2026-07-17T07:34:36.9006632Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_3/simple.dmn
2026-07-17T07:34:36.9007135Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_4/Chapter
11 Example.dmn
2026-07-17T07:34:36.9007636Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_4/Loan
info.dmn
2026-07-17T07:34:36.9008159Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_4/Recommended
Loan Products.dmn
2026-07-17T07:34:36.9008703Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_5/Chapter
11 Example.dmn
2026-07-17T07:34:36.9009196Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_5/Loan
info.dmn
2026-07-17T07:34:36.9009821Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_5/Recommended
Loan Products.dmn
2026-07-17T07:34:36.9010284Z
kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/Slash.dmn
2026-07-17T07:34:36.9010691Z
kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/alternative_feel_ns_declaration.dmn
2026-07-17T07:34:36.9011228Z
kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/decisionservices/DSWithImportRequiredInput20180920.dmn
2026-07-17T07:34:36.9011740Z
kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_3/Chapter 11
Example.dmn
2026-07-17T07:34:36.9012156Z
kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_3/DMN13-132.dmn
2026-07-17T07:34:36.9012625Z
kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_3/Loan info.dmn
2026-07-17T07:34:36.9013043Z
kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_3/Recommended Loan
Products.dmn
2026-07-17T07:34:36.9013457Z
kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_3/simple.dmn
2026-07-17T07:34:36.9013852Z
kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_4/Chapter 11
Example.dmn
2026-07-17T07:34:36.9014252Z
kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_4/Loan info.dmn
2026-07-17T07:34:36.9014662Z
kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_4/Recommended Loan
Products.dmn
2026-07-17T07:34:36.9015089Z
kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_5/Chapter 11
Example.dmn
2026-07-17T07:34:36.9015492Z
kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_5/Loan info.dmn
2026-07-17T07:34:36.9015910Z
kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_5/Recommended Loan
Products.dmn
2026-07-17T07:34:36.9016494Z
kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/0001-input-data-string-artificial-attributes.dmn
2026-07-17T07:34:36.9017138Z
kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/0001-input-data-string-itIT.dmn
2026-07-17T07:34:36.9017713Z
kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/0001-input-data-string.dmn
2026-07-17T07:34:36.9018378Z
kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/0002-input-data-number.dmn
2026-07-17T07:34:36.9018913Z
kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/0003-input-data-st
2026-07-17T07:34:36.9019274Z Aborting
2026-07-17T07:34:37.0999409Z error: Your local changes to the following
files would be overwritten by merge:
2026-07-17T07:34:37.1000242Z
drools-commands/src/main/java/org/drools/commands/runtime/rule/FireUntilHaltCommand.java
2026-07-17T07:34:37.1000960Z
drools-distribution/src/main/assembly/scripts/runExamples.bat
2026-07-17T07:34:37.1001795Z
drools-serialization-protobuf/src/test/java/org/drools/serialization/protobuf/ObjectMarshallingStrategyStoreTest.java
2026-07-17T07:34:37.1003173Z
drools-test-coverage/test-compiler-integration/src/test/java/org/drools/compiler/integrationtests/ErrorOnInsertLogicalTest.java
2026-07-17T07:34:37.1004184Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_1/0001-input-data-string.dmn
2026-07-17T07:34:37.1005038Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_1/0002-input-data-number.dmn
2026-07-17T07:34:37.1006042Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_1/0003-input-data-string-allowed-values.dmn
2026-07-17T07:34:37.1007017Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_1/0005-decision-list.dmn
2026-07-17T07:34:37.1007915Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_2/decision-list.dmn
2026-07-17T07:34:37.1008771Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_3/Chapter
11 Example.dmn
2026-07-17T07:34:37.1009599Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_3/Loan
info.dmn
2026-07-17T07:34:37.1010693Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_3/Recommended
Loan Products.dmn
2026-07-17T07:34:37.1011383Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_3/decision-list.dmn
2026-07-17T07:34:37.1011897Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_3/dmnedge.dmn
2026-07-17T07:34:37.1012527Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_3/group.dmn
2026-07-17T07:34:37.1013042Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_3/simple.dmn
2026-07-17T07:34:37.1013568Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_4/Chapter
11 Example.dmn
2026-07-17T07:34:37.1014111Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_4/Loan
info.dmn
2026-07-17T07:34:37.1014638Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_4/Recommended
Loan Products.dmn
2026-07-17T07:34:37.1015190Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_5/Chapter
11 Example.dmn
2026-07-17T07:34:37.1015677Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_5/Loan
info.dmn
2026-07-17T07:34:37.1016189Z
kie-dmn/kie-dmn-backend/src/test/resources/org/kie/dmn/backend/marshalling/v1_5/Recommended
Loan Products.dmn
2026-07-17T07:34:37.1016672Z
kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/Slash.dmn
2026-07-17T07:34:37.1017092Z
kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/alternative_feel_ns_declaration.dmn
2026-07-17T07:34:37.1017634Z
kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/decisionservices/DSWithImportRequiredInput20180920.dmn
2026-07-17T07:34:37.1018157Z
kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_3/Chapter 11
Example.dmn
2026-07-17T07:34:37.1018583Z
kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_3/DMN13-132.dmn
2026-07-17T07:34:37.1018963Z
kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_3/Loan info.dmn
2026-07-17T07:34:37.1019415Z
kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_3/Recommended Loan
Products.dmn
2026-07-17T07:34:37.1019972Z
kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_3/simple.dmn
2026-07-17T07:34:37.1020369Z
kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_4/Chapter 11
Example.dmn
2026-07-17T07:34:37.1020766Z
kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_4/Loan info.dmn
2026-07-17T07:34:37.1021179Z
kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_4/Recommended Loan
Products.dmn
2026-07-17T07:34:37.1021610Z
kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_5/Chapter 11
Example.dmn
2026-07-17T07:34:37.1021994Z
kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_5/Loan info.dmn
2026-07-17T07:34:37.1022542Z
kie-dmn/kie-dmn-core/src/test/resources/org/kie/dmn/core/v1_5/Recommended Loan
Products.dmn
2026-07-17T07:34:37.1023144Z
kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/0001-input-data-string-artificial-attributes.dmn
2026-07-17T07:34:37.1023791Z
kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/0001-input-data-string-itIT.dmn
2026-07-17T07:34:37.1024385Z
kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/0001-input-data-string.dmn
2026-07-17T07:34:37.1024934Z
kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/0002-input-data-number.dmn
2026-07-17T07:34:37.1025463Z
kie-dmn/kie-dmn-legacy-tests/src/test/resources/org/kie/dmn/legacy/tests/core/v1_1/0003-input-data-st
2026-07-17T07:34:37.1025822Z Aborting
2026-07-17T07:34:37.1025996Z Index was not unstashed.
2026-07-17T07:34:37.1040734Z Merge with strategy ort failed.
2026-07-17T07:34:37.1062936Z ##[error]Process completed with exit code 2.
```
It happens because:
- The job (`.github/actions/checkout-pr/action.yaml`) checkout `main`
- The CRLF files are considered as "modified" at the time of checkout,
because of `* text eol=lf` in `.gitattributes` (precisely, `text` : it means
`When a matching file is added to the index, the file’s line endings are
normalized to LF in the index.` https://git-scm.com/docs/gitattributes/2.50.0 )
- The job tries to merge this PR
- Results in `error: Your local changes to the following files would be
overwritten by merge:`
So we cannot avoid this `CI :: Build` (and `CI :: CI Tests`) failures unless
fixing these files.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]