From 6a1120bbd3b94fe00dcd1f719a855df90e9ce5d5 Mon Sep 17 00:00:00 2001 From: Stanislav Trailov Date: Mon, 30 Mar 2026 14:23:40 +0300 Subject: [PATCH] Try to fix dash licence tool in release pipeline (#2987) Signed-off-by: strailov --- .github/workflows/reusable_workflow_license-scan.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/reusable_workflow_license-scan.yaml b/.github/workflows/reusable_workflow_license-scan.yaml index 510715f2b..85ad43442 100644 --- a/.github/workflows/reusable_workflow_license-scan.yaml +++ b/.github/workflows/reusable_workflow_license-scan.yaml @@ -53,7 +53,7 @@ jobs: - name: Check dependency licenses with dash tool (and open issues to Dash IP lab, doesn't fail) if: ${{ inputs.open_tickets }} run: | - mvn license-tool:license-check -Ddash.fail=false -PcheckLicense -Ddash.iplab.token=${{ secrets.GITLAB_API_TOKEN }} + mvn license-tool:license-check -Ddash.batch=50 -Ddash.fail=false -PcheckLicense -Ddash.iplab.token=${{ secrets.GITLAB_API_TOKEN }} CHANGED_FILES_COUNT=$(git status --short | wc -l) CHANGED_FILES_COUNT=${CHANGED_FILES_COUNT//[[:space:]]/} echo "Number of changed files: ${CHANGED_FILES_COUNT}" @@ -80,4 +80,4 @@ jobs: fi - name: Check dependency licenses with dash tool (and fail if there are restricted dependencies) - run: mvn license-tool:license-check -Ddash.fail=true -PcheckLicense --projects '!org.eclipse.hawkbit:hawkbit-repository-test,!org.eclipse.hawkbit:hawkbit-dmf-rabbitmq-test' \ No newline at end of file + run: mvn license-tool:license-check -Ddash.batch=50 -Ddash.fail=true -PcheckLicense --projects '!org.eclipse.hawkbit:hawkbit-repository-test,!org.eclipse.hawkbit:hawkbit-dmf-rabbitmq-test' \ No newline at end of file