Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion .github/workflows/build-conquest-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ on: # yamllint disable-line rule:truthy
default: false
type: boolean
platforms:
description: 'Platform to build for, eg. '
description: 'Platform to build for'
type: choice
options:
- 'rocky8'
- 'ubuntu'
Expand Down Expand Up @@ -94,6 +95,22 @@ jobs:
archive_path=$(echo $output | awk '{print $NF}')
echo "archive_filename=$archive_filename" >> $GITHUB_ENV
echo "archive_path=$archive_path" >> $GITHUB_ENV
echo $output

- name: Output logs
run: |
for filename in /opt/ccdc/third-party-sources/logs/*; do
echo "::group::${filename}"
cat "$filename"
echo "::endgroup::"
done

- name: Store build logs as build artifact
uses: actions/upload-artifact@v4
with:
retention-days: 1
path: "/opt/ccdc/third-party-sources/logs/*"
name: "build_logs.zip"

- name: Store conquest python as build artifact
if: ${{ !inputs.artifactory-push }}
Expand Down
Loading
Loading