Skip to content

Commit

Permalink
test: update load test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
btlghrants committed Nov 18, 2024
1 parent a19d2d0 commit 20250c1
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/load.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
cache: "npm"
cache-dependency-path: pepr

- name: install load script deps
- name: install load script run dependencies
run: |
cd "$PEPR"
npm ci
Expand All @@ -59,15 +59,15 @@ jobs:
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: tgz
path: pepr-0.0.0-development.tgz
path: "**/pepr-0.0.0-development.tgz"
if-no-files-found: error
retention-days: 30

- name: upload pepr controller image artifact (.tar)
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: tar
path: pepr-dev.tar
path: "**/pepr-dev.tar"
if-no-files-found: error
retention-days: 30

Expand Down Expand Up @@ -95,15 +95,15 @@ jobs:
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: actress.log
path: load/*-actress.log
path: "**/load/*-actress.log"
if-no-files-found: error
retention-days: 30

- name: upload raw test sample log (audience)
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: audience.log
path: load/*-audience.log
path: "**/load/*-audience.log"
if-no-files-found: error
retention-days: 30

Expand All @@ -116,23 +116,23 @@ jobs:
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: actress.json
path: load/*-actress.json
path: "**/load/*-actress.json"
if-no-files-found: error
retention-days: 30

- name: upload parsed sample log (audience)
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: audience.json
path: load/*-audience.json
path: "**/load/*-audience.json"
if-no-files-found: error
retention-days: 30

- name: upload load test summary
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: summary.json
path: load/*-summary.json
path: "**/load/*-summary.json"
if-no-files-found: error
retention-days: 30

Expand All @@ -145,6 +145,6 @@ jobs:
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: watcher.png
path: load/*.png
path: "**/load/*.png"
if-no-files-found: error
retention-days: 30

0 comments on commit 20250c1

Please sign in to comment.