Skip to content

Commit

Permalink
ci: skip collection of debug artefacts on success
Browse files Browse the repository at this point in the history
The Github runners for the KFP CI are getting out of storage by the
time the tests execution finishes, so there is no space left for saving
logs. Skipping saving the debug artefacts on success will allow the workflows
to run successfully.
  • Loading branch information
DnPlas committed Nov 27, 2024
1 parent 01ad790 commit 7fe5fd8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/integrate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,8 @@ jobs:
run: juju status
if: failure()

# Collect debug artefacts only on failure as the CI for this repository
# in particular struggles with storage limitations.
- name: Collect charm debug artifacts
uses: canonical/kubeflow-ci/actions/dump-charm-debug-artifacts@main
if: always()
if: failure()

0 comments on commit 7fe5fd8

Please sign in to comment.