|
|
|
|
@ -266,7 +266,7 @@ jobs:
|
|
|
|
|
SCENARIO=$(echo "${{ matrix.filter }}" | cut -d' ' -f1)
|
|
|
|
|
echo fragment="${SCENARIO}" >> "$GITHUB_OUTPUT"
|
|
|
|
|
- name: Upload e2e tests output
|
|
|
|
|
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
|
|
|
|
|
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
|
|
|
|
|
with:
|
|
|
|
|
name: test-${{ steps.split.outputs.fragment }}
|
|
|
|
|
path: enos/*.log
|
|
|
|
|
@ -279,7 +279,7 @@ jobs:
|
|
|
|
|
docker logs database
|
|
|
|
|
- name: Upload e2e UI tests debug info
|
|
|
|
|
if: contains(matrix.filter, 'e2e_ui') && steps.run.outcome == 'failure'
|
|
|
|
|
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
|
|
|
|
|
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
|
|
|
|
|
with:
|
|
|
|
|
name: test-e2e-ui-debug
|
|
|
|
|
path: enos/support/src/boundary-ui/ui/admin/tests/e2e/artifacts/test-failures
|
|
|
|
|
@ -292,7 +292,7 @@ jobs:
|
|
|
|
|
enos scenario launch --timeout 60m0s --chdir ./enos ${{ matrix.filter }}
|
|
|
|
|
- name: Upload Debug Data
|
|
|
|
|
if: ${{ always() && steps.run_retry.outcome == 'failure' }}
|
|
|
|
|
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
|
|
|
|
|
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
|
|
|
|
|
with:
|
|
|
|
|
# The name of the artifact is the same as the matrix scenario name with the spaces replaced with underscores and colons replaced by equals.
|
|
|
|
|
name: ${{ steps.prepare_scenario.outputs.debug_data_artifact_name }}
|
|
|
|
|
|