Skip to content

Try and update Tcl to 9.0.1... (CQ-1915) #21

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 12 commits into
base: main
Choose a base branch
from
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