ci: fix IDE setup on mac (#3226)

This commit is contained in:
Adrian Stobbe 2024-07-09 09:27:32 +02:00 committed by GitHub
parent 2de4cdba74
commit f4a3ae7d27
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 112 additions and 27 deletions

View file

@ -0,0 +1,14 @@
//go:build !linux
/*
Copyright (c) Edgeless Systems GmbH
SPDX-License-Identifier: AGPL-3.0-only
*/
package reboot
// Reboot is not implemented on non-Linux platforms.
func Reboot(_ error) {
panic("reboot not implemented on non-Linux platforms")
}