FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pom-scijava/.github/status.sh at pom-scijava-45.0.0 · scijava/pom-scijava · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
scijava
/
pom-scijava
Public
Notifications
You must be signed in to change notification settings
Fork
35
Star
28
Code
Issues
8
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
pom-scijava
/
.github
/
status.sh
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
27 lines (24 loc) · 1.23 KB
Breadcrumbs
pom-scijava
/
.github
/
status.sh
Copy path
File metadata and controls
executable file
·
27 lines (24 loc) · 1.23 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!
/bin/sh
#
CI orchestrator for the status dashboard: fetch the most recently published
#
smelt.json, regenerate the status/badges/team reports from it, and publish
#
them to status.scijava.org. The report generation itself lives in
#
bin/report.sh so it can be run outside CI too.
set
-e
#
Pull the most recently published smelt results so that `pombast status` can
#
classify each available version bump by its bytecode-floor blast radius
#
(flat / local / cascading / excluded). Read straight from the gh-pages branch
#
rather than https://status.scijava.org/, so we pick up a freshly committed
#
smelt.json immediately instead of waiting on the asynchronous Pages deploy.
#
#
Best-effort: if smelt.json is not published yet (or the fetch fails),
#
bin/report.sh still generates the reports -- just without the classification.
smelt_url=https://raw.githubusercontent.com/scijava/status.scijava.org/gh-pages/smelt.json
mkdir -p target/pombast
curl -fsSL -o target/pombast/smelt.json
"
$smelt_url
"
||
echo
"
== smelt.json unavailable; running status without classification ==
"
bin/report.sh
.github/publish.sh
"
Update status reports
"
\
target/pombast/index.html \
target/pombast/badges.json \
target/pombast/team.html \
target/pombast/team.json
Back
|
FazBrowse Home
|
New Git URL