Fix flaky write_with_sse_kms_key_id_ok test (#1140) #785
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Benchmarks | |
on: | |
push: | |
branches: [ "main", "wf-changes/**" ] | |
schedule: | |
- cron: "0 2 * * *" # Daily at 02:00 UTC | |
permissions: | |
id-token: write | |
contents: write | |
jobs: | |
integration: | |
name: Benchmarks | |
uses: ./.github/workflows/bench.yml | |
if: github.event_name != 'schedule' || github.repository == 'awslabs/mountpoint-s3' | |
with: | |
ref: ${{ github.sha }} | |
publish: ${{ github.event.ref == 'refs/heads/main' }} | |
s3_bench_results_prefix: ${{ github.event_name == 'schedule' && 'results/main/s3_standard' || null }} | |
s3express-integration: | |
name: Benchmarks (s3express) | |
uses: ./.github/workflows/bench_s3express.yml | |
if: github.event_name != 'schedule' || github.repository == 'awslabs/mountpoint-s3' | |
with: | |
ref: ${{ github.sha }} | |
publish: ${{ github.event.ref == 'refs/heads/main' }} | |
s3_bench_results_prefix: ${{ github.event_name == 'schedule' && 'results/main/s3_express' || null }} |