@blinklabs/dingo 0.19.0 → 0.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -1
- package/dingo.yaml.example +0 -2
- package/generate_benchmarks.sh +8 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -112,7 +112,6 @@ Each plugin supports specific configuration options. See `dingo.yaml.example` fo
|
|
|
112
112
|
- `bucket` - GCS bucket name
|
|
113
113
|
- `project-id` - Google Cloud project ID
|
|
114
114
|
- `prefix` - Path prefix within bucket
|
|
115
|
-
- `credentials-file` - Path to service account credentials file (optional - uses Application Default Credentials if not provided)
|
|
116
115
|
|
|
117
116
|
**AWS S3 Options:**
|
|
118
117
|
- `bucket` - S3 bucket name
|
package/dingo.yaml.example
CHANGED
package/generate_benchmarks.sh
CHANGED
|
@@ -281,10 +281,10 @@ $benchmark"
|
|
|
281
281
|
done < <(list_previous_benchmarks)
|
|
282
282
|
|
|
283
283
|
# Count items (remove empty lines and count)
|
|
284
|
-
faster_count=$(echo "$faster_benchmarks" |
|
|
285
|
-
slower_count=$(echo "$slower_benchmarks" |
|
|
286
|
-
new_count=$(echo "$new_benchmarks" |
|
|
287
|
-
removed_count=$(echo "$removed_benchmarks" |
|
|
284
|
+
faster_count=$(echo "$faster_benchmarks" | sed '/^$/d' | wc -l)
|
|
285
|
+
slower_count=$(echo "$slower_benchmarks" | sed '/^$/d' | wc -l)
|
|
286
|
+
new_count=$(echo "$new_benchmarks" | sed '/^$/d' | wc -l)
|
|
287
|
+
removed_count=$(echo "$removed_benchmarks" | sed '/^$/d' | wc -l)
|
|
288
288
|
|
|
289
289
|
echo ""
|
|
290
290
|
echo "Performance Changes Summary:"
|
|
@@ -362,10 +362,10 @@ $benchmark"
|
|
|
362
362
|
done < <(list_previous_benchmarks)
|
|
363
363
|
|
|
364
364
|
# Count items
|
|
365
|
-
faster_count=$(echo "$faster_benchmarks" |
|
|
366
|
-
slower_count=$(echo "$slower_benchmarks" |
|
|
367
|
-
new_count=$(echo "$new_benchmarks" |
|
|
368
|
-
removed_count=$(echo "$removed_benchmarks" |
|
|
365
|
+
faster_count=$(echo "$faster_benchmarks" | sed '/^$/d' | wc -l)
|
|
366
|
+
slower_count=$(echo "$slower_benchmarks" | sed '/^$/d' | wc -l)
|
|
367
|
+
new_count=$(echo "$new_benchmarks" | sed '/^$/d' | wc -l)
|
|
368
|
+
removed_count=$(echo "$removed_benchmarks" | sed '/^$/d' | wc -l)
|
|
369
369
|
|
|
370
370
|
echo "### Summary"
|
|
371
371
|
echo "- **Faster benchmarks**: $faster_count"
|