Skip to content

Commit

Permalink
increase lifetime of AWS session token to 12 hours (#9590)
Browse files Browse the repository at this point in the history
## Problem

clickbench regression causes clickbench to run >9 hours and the AWS
session token is expired before the run completes

## Summary of changes

extend lifetime of session token for this job to 12 hours
  • Loading branch information
Bodobolero authored Oct 31, 2024
1 parent e96398a commit 51fda11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/benchmarking.yml
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ jobs:
with:
aws-region: eu-central-1
role-to-assume: ${{ vars.DEV_AWS_OIDC_ROLE_ARN }}
role-duration-seconds: 18000 # 5 hours
role-duration-seconds: 43200 # 12 hours

- name: Download Neon artifact
uses: ./.github/actions/download
Expand Down

1 comment on commit 51fda11

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

5416 tests run: 5184 passed, 0 failed, 232 skipped (full report)


Flaky tests (1)

Postgres 17

Code coverage* (full report)

  • functions: 31.5% (7773 of 24686 functions)
  • lines: 49.0% (61032 of 124647 lines)

* collected from Rust tests only


The comment gets automatically updated with the latest test results
51fda11 at 2024-10-31T14:54:56.202Z :recycle:

Please sign in to comment.