Skip to content

Commit 9c08ce4

Browse files
committed
chore(scripts): increase pipeline limits to 500
Process more packages per run to build known_packages.ccl faster.
1 parent 03c0051 commit 9c08ce4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/justfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ collect-list:
3636
uv run python collect_all.py --list
3737

3838
# Cross-reference collected packages and score them
39-
crossref top="150":
39+
crossref top="500":
4040
uv run python crossref_packages.py --top {{top}}
4141

4242
# Verify package availability in package managers
43-
verify limit="100":
43+
verify limit="500":
4444
uv run python verify_packages.py --limit {{limit}}
4545

4646
# Generate CCL output from verified packages
@@ -50,8 +50,8 @@ generate-ccl min_sources="2":
5050
# Full pipeline: collect -> crossref -> verify -> generate
5151
pipeline:
5252
uv run python collect_all.py
53-
uv run python crossref_packages.py --top 150
54-
uv run python verify_packages.py --limit 100
53+
uv run python crossref_packages.py --top 500
54+
uv run python verify_packages.py --limit 500
5555
uv run python generate_ccl.py --min-sources 1
5656

5757
# Format code with Ruff

0 commit comments

Comments
 (0)