Skip to content

Commit

Permalink
run TPC-H benchmarks M-F on a schedule (#534)
Browse files Browse the repository at this point in the history
Just blanket run M-F. I can't find large runner cost, standard runner
cost I'd expect this to set us back <$5/mo, even if large runners are 5x
that we're not dealing with significant spend, can pause the schedule at
any time.


![image](https://github.com/user-attachments/assets/4d5d2470-1139-4f7f-b02f-0d85d56ec6da)

---------

Co-authored-by: Will Manning <[email protected]>
  • Loading branch information
a10y and lwwmanning authored Aug 1, 2024
1 parent c153bd3 commit 0d55fa5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/bench.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Benchmarks

on:
push:
branches: [ "develop" ]
workflow_dispatch: { }
schedule:
# Run M-F at 9:30 UTC (either 9:30 or 10:30 British time depending on season).
- cron: "30 9 * * 1-5"

permissions:
actions: read
Expand All @@ -13,7 +13,7 @@ permissions:
jobs:
bench:
runs-on: ubuntu-latest-large
if: ${{ github.event_name == 'workflow_dispatch' || (contains(github.event.head_commit.message, '[benchmark]') && github.ref_name == 'develop') }}
if: ${{ github.ref_name == 'develop' }}
steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 0d55fa5

Please sign in to comment.