We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When an AIT fails, we capture some info about the test. This info is captured using the upload-artifact action. The step that does it is:
- name: Capture testing artifacts if: ${{ failure() || success() }} uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # pin@v4 with: name: ${{ github.workflow }}-${{ github.job }}-${{ env.MATRIX }} path: | agent-integration-tests/testing-artifacts/*
But during execution, it looks like the name is not being properly populated.
github.workflow seems to resolve to Test Suite - PR, github.job to tests, but it looks like ${{env.MATRIX}} is not populating as we would expect.
github.workflow
Test Suite - PR
github.job
tests
Captured test artifacts have the correct name, matching the test being run.
The text was updated successfully, but these errors were encountered:
https://new-relic.atlassian.net/browse/NR-293730
Sorry, something went wrong.
No branches or pull requests
Description
When an AIT fails, we capture some info about the test. This info is captured using the upload-artifact action.
The step that does it is:
But during execution, it looks like the name is not being properly populated.
github.workflow
seems to resolve toTest Suite - PR
,github.job
totests
, but it looks like ${{env.MATRIX}} is not populating as we would expect.Acceptance Criteria
Captured test artifacts have the correct name, matching the test being run.
The text was updated successfully, but these errors were encountered: