diff mbox series

[yocto-autobuilder-helper,v2] scripts/abint: generalise autobuilder URL regex

Message ID 20241022164658.235987-1-ross.burton@arm.com
State New
Headers show
Series [yocto-autobuilder-helper,v2] scripts/abint: generalise autobuilder URL regex | expand

Commit Message

Ross Burton Oct. 22, 2024, 4:46 p.m. UTC
The autobuilder isn't just autobuilder.yoctoproject.org, as the new
cluster is valkyrie.yoctoproject.org.  Generalise the regex to match on
any buildbot URLs with "yocto" in the hostname, as we also have machines
using *.yocto.io.

Signed-off-by: Ross Burton <ross.burton@arm.com>
---
 scripts/abint/abint.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/scripts/abint/abint.py b/scripts/abint/abint.py
index 1d358836..5a4a9b81 100755
--- a/scripts/abint/abint.py
+++ b/scripts/abint/abint.py
@@ -54,7 +54,7 @@  class Bug:
 
 
 def get_data():
-    url_re = r"(?P<server>https?://autobuilder.yoctoproject.org/typhoon/)#/?builders/(?P<builder>\d+)/builds/(?P<build>\d+)"
+    url_re = r"(?P<server>https?://.+yocto.+/)#/?builders/(?P<builder>\d+)/builds/(?P<build>\d+)"
 
     logging.debug("Searching bugzilla for AB-INT bugs...")
     bz = bugzilla.Bugzilla("https://bugzilla.yoctoproject.org/rest")