Skip to content

Commit

Permalink
fix(ci): fix microbenchmark upload step (#14508)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwannoel authored Jan 12, 2024
1 parent fd63597 commit 09833d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/scripts/upload-micro-bench-results.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ get_branch() {
get_date() {
curl -H "Authorization: Bearer $BUILDKITE_TOKEN" \
"https://api.buildkite.com/v2/organizations/risingwavelabs/pipelines/main-cron/builds/$BUILDKITE_BUILD_NUMBER" \
| jq '.jobs | .[] | select ( .name | contains("micro benchmark")) | .finished_at' \
| jq '.jobs | .[] | select(.name != null) | select(.name | contains("micro benchmark")) | .finished_at' \
| sed 's/\.[0-9]*Z/Z/' \
| sed 's/\"//g'
}
Expand Down

0 comments on commit 09833d7

Please sign in to comment.