From d4822bd0c34dd43ceed844ab878f80e3310b235a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 14 Apr 2020 12:34:40 +0100 Subject: [PATCH] Update Linux builder name in master_private_template.py The template was still referencing `linux_glibc219_x86_64_cmake`, while `master.cfg` is using `linux_glibc217_x86_64_cmake`. This caused the slave to be silently ignored. --- master_private_template.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/master_private_template.py b/master_private_template.py index b30ba62..415f0c9 100644 --- a/master_private_template.py +++ b/master_private_template.py @@ -1,5 +1,5 @@ slaves = [ {'name': 'linux_glibc219_x86_64_chroot', 'password': 'barbarianna', - 'builders': ['linux_glibc219_x86_64_cmake']} + 'builders': ['linux_glibc217_x86_64_cmake']} ]