Nightly Benchmark Test on Docker Deephaven #594
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
# Run benchmarks on a remote system for the nightly (edge) build | |
# - Calls the reusable worflow remote-benchmarks.yml | |
name: Nightly Benchmark Test on Docker Deephaven | |
on: | |
schedule: | |
- cron: '0 6 * * *' | |
jobs: | |
process-nightly-benchmarks: | |
if: ${{github.repository_owner == 'deephaven'}} | |
uses: ./.github/workflows/remote-benchmarks.yml | |
with: | |
run_type: nightly | |
docker_image: edge | |
run_label: "<date>" | |
test_package: "io.deephaven.benchmark.tests.standard" | |
test_class_regex: "^(Test.*|.+[.$]Test.*|.*Tests?)$" | |
test_iterations: 5 | |
scale_row_count: 10000000 | |
distribution: random | |
secrets: inherit |