Skip to content

Commit

Permalink
Save CI test reports to S3. (pantsbuild#19262)
Browse files Browse the repository at this point in the history
This will let us gather data on test performance/flakiness/timeouts. 

The first commit is the interesting one. The second is just the
regenerated yaml files.
  • Loading branch information
benjyw authored Jun 8, 2023
1 parent 31dc868 commit ad20ba4
Show file tree
Hide file tree
Showing 6 changed files with 276 additions and 75 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ jobs:
name: Upload pants.log
uses: actions/upload-artifact@v3
with:
name: pants-log-wheels-Linux-ARM64
path: .pants.d/pants.log
name: logs-wheels-Linux-ARM64
path: .pants.d/*.log
- env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand Down Expand Up @@ -113,8 +113,8 @@ jobs:
name: Upload pants.log
uses: actions/upload-artifact@v3
with:
name: pants-log-wheels-Linux-x86_64
path: .pants.d/pants.log
name: logs-wheels-Linux-x86_64
path: .pants.d/*.log
- env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand Down Expand Up @@ -172,8 +172,8 @@ jobs:
name: Upload pants.log
uses: actions/upload-artifact@v3
with:
name: pants-log-wheels-macOS10-15-x86_64
path: .pants.d/pants.log
name: logs-wheels-macOS10-15-x86_64
path: .pants.d/*.log
- env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand Down Expand Up @@ -231,8 +231,8 @@ jobs:
name: Upload pants.log
uses: actions/upload-artifact@v3
with:
name: pants-log-wheels-macOS11-ARM64
path: .pants.d/pants.log
name: logs-wheels-macOS11-ARM64
path: .pants.d/*.log
- env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand Down
Loading

0 comments on commit ad20ba4

Please sign in to comment.