Skip to content
Open
Changes from 1 commit
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
17 changes: 17 additions & 0 deletions .github/workflows/integration-tests-vm-type.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,23 @@ jobs:
rm -f "$file"
done

- name: Report test failures to Jira
# Run even when tests failed (that is the point), but not when the job
# was cancelled or when running benchmarks (which produce no JUnit XML).
if: (!cancelled()) && !inputs.run-benchmarks
id: junit2jira
# TEMPORARY: pinned to the giles/junit2jira branch for testing. Switch to
# a ratcheted @main SHA once stackrox/actions PR is merged.
uses: stackrox/actions/test/junit2jira@giles/junit2jira
Comment thread
Stringy marked this conversation as resolved.
Outdated
with:
# Only create real Jira issues on push; dry-run on pull requests.
create-jiras: ${{ github.event_name == 'push' }}
jira-user: ${{ secrets.JIRA_USER }}
jira-token: ${{ secrets.JIRA_TOKEN }}
directory: integration-tests/container-logs
# gcloud is already authenticated earlier in this job, so the action
# reuses that session for the metrics upload (no gcp-account needed).

- name: Store artifacts
if: always()
# Don't fail the job on upload errors (e.g. ECONNRESET) —
Expand Down
Loading