@@ -44,6 +44,8 @@ var slowBotAliases = map[string]string{
44
44
"linux-ppc64le" : "" ,
45
45
"linux-ppc64le-power9" : "" ,
46
46
"linux-ppc64le-power10" : "" ,
47
+ "loong64" : "" ,
48
+ "linux-loong64" : "" ,
47
49
48
50
"386" : "linux-386" ,
49
51
"aix" : "aix-ppc64" ,
@@ -72,15 +74,13 @@ var slowBotAliases = map[string]string{
72
74
"ios" : "ios-arm64-corellium" ,
73
75
"linux" : "linux-amd64" ,
74
76
"linux-arm" : "linux-arm-aws" ,
75
- "linux-loong64" : "linux-loong64-3a5000" ,
76
77
"linux-mips" : "linux-mips-rtrk" ,
77
78
"linux-mips64" : "linux-mips64-rtrk" ,
78
79
"linux-mips64le" : "linux-mips64le-rtrk" ,
79
80
"linux-mipsle" : "linux-mipsle-rtrk" ,
80
81
"linux-riscv64" : "linux-riscv64-unmatched" ,
81
82
"linux-s390x" : "linux-s390x-ibm" ,
82
83
"longtest" : "linux-amd64-longtest" ,
83
- "loong64" : "linux-loong64-3a5000" ,
84
84
"mips" : "linux-mips-rtrk" ,
85
85
"mips64" : "linux-mips64-rtrk" ,
86
86
"mips64le" : "linux-mips64le-rtrk" ,
@@ -2937,7 +2937,19 @@ var BuildersPortedToLUCI = map[string]bool{
2937
2937
// stopPortedBuilder reports whether the named ported builder should be stopped,
2938
2938
// instead of just made invisible in the web UI.
2939
2939
func stopPortedBuilder (builderName string ) (stop bool ) {
2940
- return strings .Contains (builderName , "-wasm-" ) || strings .Contains (builderName , "linux-ppc64" )
2940
+ nameKeyList := []string {
2941
+ "linux-loong64" ,
2942
+ "linux-ppc64" ,
2943
+ "-wasm-" ,
2944
+ }
2945
+
2946
+ for _ , key := range nameKeyList {
2947
+ if strings .Contains (builderName , key ) {
2948
+ return true
2949
+ }
2950
+ }
2951
+
2952
+ return false
2941
2953
}
2942
2954
2943
2955
// addBuilder adds c to the Builders map after doing some checks.
0 commit comments