Skip to content

Commit

Permalink
test: updated artifact retention (#1435)
Browse files Browse the repository at this point in the history
## Description

Updates artifact retention period.

## Related Issue

Relates to #1431

## Type of change

- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [x] Other (security config, docs update, etc)

## Checklist before merging
- [x] Unit,
[Journey](https://github.com/defenseunicorns/pepr/tree/main/journey),
[E2E Tests](https://github.com/defenseunicorns/pepr-excellent-examples),
[docs](https://github.com/defenseunicorns/pepr/tree/main/docs),
[adr](https://github.com/defenseunicorns/pepr/tree/main/adr) added or
updated as needed
- [x] [Contributor Guide
Steps](https://docs.pepr.dev/main/contribute/#submitting-a-pull-request)
followed
  • Loading branch information
btlghrants authored Nov 18, 2024
1 parent f4aa736 commit 4a89bb0
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/load.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@ jobs:
name: tgz
path: pepr-0.0.0-development.tgz
if-no-files-found: error
retention-days: 1
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
if-no-files-found: error
retention-days: 1
retention-days: 30

- name: "load.cli.ts cluster up"
run: |
Expand Down Expand Up @@ -92,15 +92,15 @@ jobs:
name: actress.log
path: load/*-actress.log
if-no-files-found: error
retention-days: 1
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
if-no-files-found: error
retention-days: 1
retention-days: 30

- name: "load.cli.ts post"
run: |
Expand All @@ -113,23 +113,23 @@ jobs:
name: actress.json
path: load/*-actress.json
if-no-files-found: error
retention-days: 1
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
if-no-files-found: error
retention-days: 1
retention-days: 30

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

- name: "load.cli.ts graph"
run: |
Expand All @@ -142,4 +142,4 @@ jobs:
name: watcher.png
path: load/*.png
if-no-files-found: error
retention-days: 1
retention-days: 30

0 comments on commit 4a89bb0

Please sign in to comment.