migrate build system to earthly: supports building core, start and angular for all supported platforms. tauri still missing

This commit is contained in:
Patrick Pacher
2024-03-19 12:38:19 +01:00
parent 8579430db9
commit 66381baa1a
5 changed files with 206 additions and 8 deletions

View File

@@ -0,0 +1,10 @@
//go:build linux
// +build linux
package main
import "log"
func main() {
log.Fatalf("winkext-test not supported on linux")
}