This is an automated email from the ASF dual-hosted git repository.
thiagoelg pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-kie-tools.git
The following commit(s) were added to refs/heads/main by this push:
new 95d0922aac0 kie-tools-issue-3478: ci: Surpress logs of zip command in
CI Checks logs (#3479)
95d0922aac0 is described below
commit 95d0922aac0d4f7eaea0b1a1c6820068ce668438
Author: Dominik HanĂ¡k <[email protected]>
AuthorDate: Fri Mar 6 04:26:35 2026 +0100
kie-tools-issue-3478: ci: Surpress logs of zip command in CI Checks logs
(#3479)
---
.github/actions/upload-ci-reports-and-artifacts/action.yml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/.github/actions/upload-ci-reports-and-artifacts/action.yml
b/.github/actions/upload-ci-reports-and-artifacts/action.yml
index d62c9a3d186..c63cf974804 100644
--- a/.github/actions/upload-ci-reports-and-artifacts/action.yml
+++ b/.github/actions/upload-ci-reports-and-artifacts/action.yml
@@ -52,10 +52,10 @@ runs:
shell: bash
run: |
output_empty_zip () { echo UEsFBgAAAAAAAAAAAAAAAAAAAAAAAA== | base64
-d; }
- zip -r $RUNNER_TEMP/tests-reports.zip $TESTS_REPORTS_PATTERNS ||
output_empty_zip > $RUNNER_TEMP/tests-reports.zip
- zip -r $RUNNER_TEMP/end-to-end-tests-reports.zip
$END_TO_END_TESTS_REPORTS_PATTERNS || output_empty_zip >
$RUNNER_TEMP/end-to-end-tests-reports.zip
- zip -r $RUNNER_TEMP/end-to-end-tests-artifacts.zip
$END_TO_END_TESTS_ARTIFACTS_PATTERNS || output_empty_zip >
$RUNNER_TEMP/end-to-end-tests-artifacts.zip
- zip -r $RUNNER_TEMP/build-artifacts.zip $BUILD_ARTIFACTS_PATTERNS ||
output_empty_zip > $RUNNER_TEMP/build-artifacts.zip
+ zip -rq $RUNNER_TEMP/tests-reports.zip $TESTS_REPORTS_PATTERNS ||
output_empty_zip > $RUNNER_TEMP/tests-reports.zip
+ zip -rq $RUNNER_TEMP/end-to-end-tests-reports.zip
$END_TO_END_TESTS_REPORTS_PATTERNS || output_empty_zip >
$RUNNER_TEMP/end-to-end-tests-reports.zip
+ zip -rq $RUNNER_TEMP/end-to-end-tests-artifacts.zip
$END_TO_END_TESTS_ARTIFACTS_PATTERNS || output_empty_zip >
$RUNNER_TEMP/end-to-end-tests-artifacts.zip
+ zip -rq $RUNNER_TEMP/build-artifacts.zip $BUILD_ARTIFACTS_PATTERNS ||
output_empty_zip > $RUNNER_TEMP/build-artifacts.zip
ls -la $RUNNER_TEMP
- name: "Upload tests reports"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]