This is an automated email from the ASF dual-hosted git repository.

gitgabrio pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-kie-drools.git


The following commit(s) were added to refs/heads/main by this push:
     new fa4d756c3c [incubator-kie-issues#2259] Dumping dependency trees to 
different file (#6593)
fa4d756c3c is described below

commit fa4d756c3ce42bc82e9529e0dc471943794410ae
Author: Gabriele Cardosi <[email protected]>
AuthorDate: Mon Feb 23 15:49:03 2026 +0100

    [incubator-kie-issues#2259] Dumping dependency trees to different file 
(#6593)
    
    * [no_issue_dependency_trees] Dumping dependency trees to different file
    
    * [no_issue_dependency_trees] Retrigger
    
    * [no_issue_dependency_trees] Retrigger
    
    * [no_issue_dependency_trees] Apply dependency tree output to downstream 
builds
    
    * [no_issue_dependency_trees] Fix dependency tree output file name to avoid 
overlap/clashes
    
    * [no_issue_dependency_trees] Fix dependency tree output file name to avoid 
overlap/clashes
    
    * [no_issue_dependency_trees] Fix dependency tree output file name to avoid 
overlap/clashes
    
    * [no_issue_dependency_trees] Fix dependency tree output file name to avoid 
overlap/clashes
    
    * [no_issue_dependency_trees] Fix dependency tree output file name to avoid 
overlap/clashes
    
    * [no_issue_dependency_trees] Fix dependency tree output file name to avoid 
overlap/clashes
    
    * [no_issue_dependency_trees] Retrigger
    
    * [no_issue_dependency_trees] Fix usage of variable in dependency tree name
    
    * [no_issue_dependency_trees] Fix artifact name
    
    * [no_issue_dependency_trees] Apply PR suggestion
    
    ---------
    
    Co-authored-by: Gabriele-Cardosi <[email protected]>
---
 .github/workflows/pr-downstream.yml | 8 ++++++++
 .github/workflows/pr-drools.yml     | 8 ++++++++
 2 files changed, 16 insertions(+)

diff --git a/.github/workflows/pr-downstream.yml 
b/.github/workflows/pr-downstream.yml
index ac0c652e9d..bc6d82bef4 100644
--- a/.github/workflows/pr-downstream.yml
+++ b/.github/workflows/pr-downstream.yml
@@ -69,6 +69,8 @@ jobs:
       fail-fast: false
     runs-on: ${{ matrix.os }}
     name: ${{ matrix.job_name }} (${{ matrix.os }} / Java-${{ 
matrix.java-version }} / Maven-${{ matrix.maven-version }})
+    env:
+      DEPENDENCY_TREE_FILE: 'mvn_dependency_tree_${{ matrix.job_name }}_${{ 
matrix.os }}.txt'
     steps:
       - name: Clean Disk Space
         uses: 
apache/incubator-kie-kogito-pipelines/.ci/actions/ubuntu-disk-space@main
@@ -97,3 +99,9 @@ jobs:
         if: ${{ always() }}
         with:
           report_paths: '**/*-reports/TEST-*.xml'
+      - name: Upload Dependency Trees
+        uses: actions/upload-artifact@v4
+        if: ${{ always() }}
+        with:
+          name: dependency-trees-logs_${{ matrix.job_name }}_${{ matrix.os }}
+          path: '**/${{ env.DEPENDENCY_TREE_FILE }}'
diff --git a/.github/workflows/pr-drools.yml b/.github/workflows/pr-drools.yml
index f8da2a4cad..e46dd1c8f0 100644
--- a/.github/workflows/pr-drools.yml
+++ b/.github/workflows/pr-drools.yml
@@ -45,6 +45,8 @@ jobs:
       fail-fast: false
     runs-on: ${{ matrix.os }}
     name: ${{ matrix.os }} / Java-${{ matrix.java-version }} / Maven-${{ 
matrix.maven-version }}
+    env:
+      DEPENDENCY_TREE_FILE: 'mvn_dependency_tree_drools_${{ matrix.os }}.txt'
     steps:
       - name: Clean Disk Space
         uses: 
apache/incubator-kie-kogito-pipelines/.ci/actions/ubuntu-disk-space@main
@@ -72,3 +74,9 @@ jobs:
         if: ${{ always() }}
         with:
           report_paths: '**/*-reports/TEST-*.xml'
+      - name: Upload Dependency Trees
+        uses: actions/upload-artifact@v4
+        if: ${{ always() }}
+        with:
+          name: dependency-trees-logs_drools_${{ matrix.os }}
+          path: '**/${{ env.DEPENDENCY_TREE_FILE }}'


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to