upload results to csv file in CI job

This commit is contained in:
aya 2025-05-15 13:49:15 +03:00
parent e328fa0c86
commit 6564d7a0c0
2 changed files with 13 additions and 1 deletions

View File

@ -45,6 +45,12 @@ jobs:
name: endurance-logs-group1
path: testlogs1.log
- name: Upload Memory Metrics (Group 1)
uses: actions/upload-artifact@v4
with:
name: memory-metrics-group1
path: px_load_metrics.csv
endurance2:
runs-on: ubuntu-latest
@ -85,3 +91,9 @@ jobs:
with:
name: endurance-logs-group2
path: testlogs2.log
- name: Upload Memory Metrics (Group 2)
uses: actions/upload-artifact@v4
with:
name: memory-metrics-group2
path: px_load_metrics.csv

View File

@ -136,7 +136,7 @@ func TestStressHighThroughput10kPublish(t *testing.T) {
captureMemory(t.Name(), "at start")
totalMessages := 2000
totalMessages := 2500
pubsubTopic := DefaultPubsubTopic
for i := 0; i < totalMessages; i++ {