Skip to content

Commit

Permalink
Fixed iteration props
Browse files Browse the repository at this point in the history
  • Loading branch information
stanbrub committed Jul 30, 2024
1 parent 4ad35a5 commit 3e4b532
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
9 changes: 4 additions & 5 deletions .github/scripts/matrix_array.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@
set -o errexit
set -o pipefail

# For a given descriptor, return the appropriate matrix array
# that can be read in a Github workflow with fromJSON(array) that
# corresponds
# ex. matrix_array.sh adhoc 5
# ex. matrix_array.sh release 4
# For a given descriptor, return the appropriate array that can be read by a Github
# workflow with fromJSON(array)
# ex. matrix_array.sh matrix-arr adhoc 5
# ex. matrix_array.sh matrix-arr release 4

NAME=$1
RUN_TYPE=$2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-remote-benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
run_label: "<date>"
test_package: "io.deephaven.benchmark.tests.standard"
test_class_regex: "^(Test.*|.+[.$]Test.*|.*Tests?)$"
test_iterations: 1
test_iterations: 5
scale_row_count: 10000000
distribution: random
secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/release-remote-benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run_label: "<version>"
test_package: "io.deephaven.benchmark.tests.standard"
test_class_regex: "^(Test.*|.+[.$]Test.*|.*Tests?)$"
test_iterations: 1
test_iterations: 5
scale_row_count: 10000000
distribution: random
secrets: inherit

0 comments on commit 3e4b532

Please sign in to comment.