File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -146,6 +146,7 @@ var basePinErr atomic.Value
146
146
147
147
func addHealthCheckers (ctx context.Context , sc * secret.Client ) {
148
148
addHealthChecker (newMacHealthChecker ())
149
+ addHealthChecker (newMacOSARM64Checker ())
149
150
addHealthChecker (newScalewayHealthChecker ())
150
151
addHealthChecker (newPacketHealthChecker ())
151
152
addHealthChecker (newOSUPPC64Checker ())
@@ -432,6 +433,15 @@ func fetchMakeMacStatus() (errs, warns []string) {
432
433
return resj .Errors , resj .Warnings
433
434
}
434
435
436
+ func newMacOSARM64Checker () * healthChecker {
437
+ return & healthChecker {
438
+ ID : "macos-arm64" ,
439
+ Title : "macOS ARM64 (M1 Mac minis)" ,
440
+ DocURL : "https://golang.org/issue/39782" ,
441
+ Check : hostTypeChecker ("host-darwin-arm64-11_0-toothrot" ),
442
+ }
443
+ }
444
+
435
445
func hostTypeChecker (hostType string ) func (cw * checkWriter ) {
436
446
want := expectedHosts (hostType )
437
447
return func (cw * checkWriter ) {
You can’t perform that action at this time.
0 commit comments