Skip to content

Commit

Permalink
qa-tests: upload metrics based plots generated in the tip-tracking te…
Browse files Browse the repository at this point in the history
…st (#13194)

Upload plots created during test
  • Loading branch information
mriccobene authored Jan 10, 2025
1 parent b031b35 commit dbd36e0
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 6 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/qa-tip-tracking-polygon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,21 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: test-results
path: |
${{ github.workspace }}/result-${{ env.CHAIN }}.json
${{ env.ERIGON_TESTBED_DATA_DIR }}/logs/erigon.log
path: ${{ github.workspace }}/result-${{ env.CHAIN }}.json

- name: Upload erigon log
if: steps.test_step.outputs.test_executed == 'true'
uses: actions/upload-artifact@v4
with:
name: erigon-log
path: ${{ env.ERIGON_TESTBED_DATA_DIR }}/logs/erigon.log

- name: Upload metric plots
if: steps.test_step.outputs.test_executed == 'true'
uses: actions/upload-artifact@v4
with:
name: metric-plots
path: ${{ github.workspace }}/metrics-${{ env.CHAIN }}-plots*

- name: Delete Erigon Testbed Data Directory
if: always()
Expand Down
18 changes: 15 additions & 3 deletions .github/workflows/qa-tip-tracking.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,21 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: test-results
path: |
${{ github.workspace }}/result-${{ env.CHAIN }}.json
${{ env.ERIGON_TESTBED_DATA_DIR }}/logs/erigon.log
path: ${{ github.workspace }}/result-${{ env.CHAIN }}.json

- name: Upload erigon log
if: steps.test_step.outputs.test_executed == 'true'
uses: actions/upload-artifact@v4
with:
name: erigon-log
path: ${{ env.ERIGON_TESTBED_DATA_DIR }}/logs/erigon.log

- name: Upload metric plots
if: steps.test_step.outputs.test_executed == 'true'
uses: actions/upload-artifact@v4
with:
name: metric-plots
path: ${{ github.workspace }}/metrics-${{ env.CHAIN }}-plots*

- name: Delete Erigon Testbed Data Directory
if: always()
Expand Down

0 comments on commit dbd36e0

Please sign in to comment.