mirror of
https://github.com/Abdess/retrobios.git
synced 2026-06-19 10:32:47 +00:00
refactor: consolidate CI pipeline, remove third-party deps
This commit is contained in:
parent
e6ea0484a8
commit
3453f89d9d
34 changed files with 206 additions and 2091 deletions
|
|
@ -26,7 +26,7 @@ import urllib.error
|
|||
from pathlib import Path
|
||||
|
||||
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
|
||||
from common import load_platform_config
|
||||
from common import load_database, load_platform_config
|
||||
|
||||
try:
|
||||
import yaml
|
||||
|
|
@ -62,11 +62,6 @@ ARCHIVE_ORG_COLLECTIONS = [
|
|||
]
|
||||
|
||||
|
||||
def load_database(db_path: str) -> dict:
|
||||
with open(db_path) as f:
|
||||
return json.load(f)
|
||||
|
||||
|
||||
def find_missing(config: dict, db: dict) -> list[dict]:
|
||||
"""Find BIOS files required by platform but not in database."""
|
||||
missing = []
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue