From 63ea6585cdbba21f8a27e2cfd9f8adf719ff969b Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Mon, 20 May 2024 10:20:22 +0200 Subject: [PATCH] config: clean up manual build and ignore rdep lists those packages eiher no longer exist, or should proably build now that the CI runners are faster. --- msys2_autobuild/config.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/msys2_autobuild/config.py b/msys2_autobuild/config.py index 50060de..4a90b3e 100644 --- a/msys2_autobuild/config.py +++ b/msys2_autobuild/config.py @@ -74,14 +74,10 @@ class Config: """Maximum jobs for each build type. Default is no limit.""" MANUAL_BUILD: List[Tuple[str, List[BuildType]]] = [ - ('mingw-w64-firebird-git', []), - ('mingw-w64-arm-none-eabi-gcc', []), ] """Packages that take too long to build, or can't be build and should be handled manually""" IGNORE_RDEP_PACKAGES: List[str] = [ - 'mingw-w64-qt5-static', - 'mingw-w64-zig', ] """XXX: These would in theory block rdeps, but no one fixed them, so we ignore them"""