Run Scheduled Benchmarks #111
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: Run Scheduled Benchmarks | |
on: | |
# Run daily shortly before midnight US Eastern Time. | |
# (Use any minute other than "on the hour".) | |
schedule: | |
- cron: "40 3 * * *" # UTC | |
# Also allow running on demand via the "Run workflow" UI in GitHub Actions. | |
workflow_dispatch: | |
inputs: | |
timestamp: | |
description: 'Timestamp to use as ID for results. Format is YYYY-mm-dd-HHMMSS' | |
required: false | |
type: string | |
ruby_commit: | |
description: 'Ruby commit to build (sha, branch, ref, etc)' | |
required: false | |
type: string | |
concurrency: 1 | |
permissions: {} # none | |
jobs: | |
benchmarks: | |
uses: ./.github/workflows/wrapper.yml | |
secrets: inherit | |
with: | |
script: | | |
../continuous_reporting/create_json_params_file.rb --benchmark-data-dir=continuous_reporting/data --cruby-name="${{ github.event.inputs.ruby_commit }}" --output-timestamp="${{ github.event.inputs.timestamp }}" | |
cat bench_params.json | |
./bin/run benchmark bench_params.json |