mirror of
https://github.com/Noratrieb/does-it-build.git
synced 2026-01-16 11:15:01 +01:00
Add nightly overview pages
This commit is contained in:
parent
7f4c69e51f
commit
61d78680e0
9 changed files with 229 additions and 41 deletions
|
|
@ -43,7 +43,7 @@ impl Nightlies {
|
|||
.last()
|
||||
.ok_or_eyre("did not find any nightlies in manifests.txt")?;
|
||||
|
||||
for nightly in guess_more_recent_nightlies(&latest)? {
|
||||
for nightly in guess_more_recent_nightlies(latest)? {
|
||||
if nightly_exists(&nightly, cache)
|
||||
.await
|
||||
.wrap_err_with(|| format!("checking whether {nightly} exists"))?
|
||||
|
|
@ -54,7 +54,10 @@ impl Nightlies {
|
|||
|
||||
all.reverse();
|
||||
|
||||
debug!("Loaded {} nightlies from the manifest and manual additions", all.len());
|
||||
debug!(
|
||||
"Loaded {} nightlies from the manifest and manual additions",
|
||||
all.len()
|
||||
);
|
||||
Ok(Self { all })
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue