File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -334,8 +334,10 @@ def write_html_pages(
334334 if job .endswith (("-atheme" , "-anope" , "-dlk" )):
335335 assert is_server
336336 job_categories [job ] = "server-with-services"
337+ elif job in ("ergo" , "sable" ):
338+ job_categories [job ] = "server"
337339 elif is_server :
338- job_categories [job ] = "server" # with or without services
340+ job_categories [job ] = "server- without- services"
339341 else :
340342 assert is_client
341343 job_categories [job ] = "client"
@@ -349,6 +351,11 @@ def write_html_pages(
349351 for result in results
350352 if result .module_name == module_name and not result .skipped
351353 }
354+ if (
355+ "server-with-services" in module_categories
356+ or "server-without-services" in module_categories
357+ ):
358+ module_categories .add ("server" )
352359
353360 module_jobs = [job for job in jobs if job_categories [job ] in module_categories ]
354361
You can’t perform that action at this time.
0 commit comments