Skip to content

Commit 568045a

Browse files
Output build logs to terminal too (JIRA CQ-1519)
1 parent 3501eaa commit 568045a

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/build-conquest-python.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,14 @@ jobs:
9797
echo "archive_path=$archive_path" >> $GITHUB_ENV
9898
echo $output
9999
100+
- name: Output logs
101+
run: |
102+
for filename in /opt/ccdc/third-party-sources/logs/*; do
103+
echo "::group::${filename}"
104+
cat "$filename"
105+
echo "::endgroup::"
106+
done
107+
100108
- name: Store build logs as build artifact
101109
uses: actions/upload-artifact@v4
102110
with:

0 commit comments

Comments
 (0)