Release Benchmark Test on Docker Deephaven #7
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
# Copyright (c) 2023-2024 Deephaven Data Labs and Patent Pending | |
# Run benchmarks on a remote system according to the release defined | |
# in resources/release-benchmark-docker-compose.yml | |
# - Calls the reusable worflow remote-benchmarks.yml | |
name: Release Benchmark Test on Docker Deephaven | |
on: | |
workflow_dispatch: | |
inputs: | |
docker_image: | |
description: 'Docker Image Name' | |
required: true | |
default: '0.36.0' | |
type: string | |
jobs: | |
process-release-benchmarks: | |
uses: ./.github/workflows/remote-benchmarks.yml | |
with: | |
run_type: release | |
docker_image: ${{ inputs.docker_image }} | |
run_label: "<version>" | |
test_package: "io.deephaven.benchmark.tests.standard" | |
test_class_regex: "^(Test.*|.+[.$]Test.*|.*Tests?)$" | |
test_iterations: 5 | |
scale_row_count: 10000000 | |
distribution: random | |
test_device_addr: "<default>" | |
config_options: "<default>" | |
secrets: inherit |