File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11#! /bin/sh
22uv tool install " git+https://github.com/scijava/pombast.git"
3- pombast status .
3+
4+ # Pull the most recently published smelt results so that `pombast status` can
5+ # classify each available version bump by its bytecode-floor blast radius
6+ # (flat / local / cascading / excluded). This is the same smelt.json the status
7+ # page itself fetches client-side, so the generator and the browser agree.
8+ #
9+ # Best-effort: if smelt.json is not published yet (or the fetch fails), status
10+ # still runs -- just without the bytecode classification overlay.
11+ smelt_arg=" "
12+ if curl -fsSLO https://status.scijava.org/smelt.json; then
13+ smelt_arg=" --smelt smelt.json"
14+ else
15+ echo " == smelt.json unavailable; running status without classification =="
16+ fi
17+
18+ pombast status $smelt_arg .
419pombast badges -o badges.json .
520pombast team .
621.github/publish.sh " Update status reports" index.html badges.json team.html
You can’t perform that action at this time.
0 commit comments