Skip to content

Commit ee36e0e

Browse files
committed
Skip runs that are too old
1 parent 7175cc7 commit ee36e0e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

scripts/ci-report/fetch_stats_from_ci.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ while read -r run; do
4040
head_branch="${parts[3]}"
4141
head_sha="${parts[4]}"
4242

43+
if [[ ${database_id} -le 4595490577 ]]; then
44+
echo "Skipping ${database_id} (${display_title}), too old..."
45+
continue
46+
fi
47+
4348
run_jobs_file=run-"${database_id}"-"${event}"-jobs.json
4449
if [[ ! -f "${run_jobs_file}" ]]; then
4550
echo "Fetching jobs for run: ${display_title} (${database_id}, ${event}, ${head_branch})"

0 commit comments

Comments
 (0)