Skip to content

Commit

Permalink
fix generate matrix for olap for saturdays (#10622)
Browse files Browse the repository at this point in the history
## Problem

when introducing pg17 for job step `Generate matrix for OLAP benchmarks`
I introduced a syntax error that only hits on Saturdays.

## Summary of changes

Remove trailing comma

## successful test run

https://github.com/neondatabase/neon/actions/runs/13086363907
  • Loading branch information
Bodobolero authored Feb 1, 2025
1 parent 6318828 commit b9e1a67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/benchmarking.yml
Original file line number Diff line number Diff line change
@@ -341,7 +341,7 @@ jobs:
],
"pg_version" : [
16,17
],
]
}'
if [ "$(date +%A)" = "Saturday" ] || [ ${RUN_AWS_RDS_AND_AURORA} = "true" ]; then

1 comment on commit b9e1a67

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

7565 tests run: 7204 passed, 0 failed, 361 skipped (full report)


Code coverage* (full report)

  • functions: 33.2% (8521 of 25632 functions)
  • lines: 49.0% (71441 of 145930 lines)

* collected from Rust tests only


The comment gets automatically updated with the latest test results
b9e1a67 at 2025-02-01T13:36:57.392Z :recycle:

Please sign in to comment.