Compare commits

..

3 Commits

Author SHA1 Message Date
IamTheFij c9bab2fcad WIP: Universal binary compilation
continuous-integration/drone/push Build is failing Details
This doesn't work because scard can't be cross compiled
2023-04-04 09:38:40 -07:00
IamTheFij 0d1a5577dd Update pre-commit hooks 2023-04-04 09:37:50 -07:00
IamTheFij 1076d56f91 Use fork of awgo supporting alfred5 2023-04-04 09:37:50 -07:00
2 changed files with 50 additions and 2 deletions

View File

@ -866,7 +866,7 @@
</dict>
</dict>
<key>version</key>
<string>1.1.1</string>
<string>1.1.0</string>
<key>webaddress</key>
<string></string>
</dict>

View File

@ -42,12 +42,60 @@ func init() {
}
}
func CompileBinaryForArch(goos, goarch, outputPath string) error {
env := info.Env()
if goos != "" {
env["GOOS"] = goos
}
if goarch != "" {
env["GOARCH"] = goarch
}
err := sh.RunWith(env, "go", "build", "-o", outputPath, ".")
if err != nil {
return fmt.Errorf("error building %s %s binary %w", goos, goarch, err)
}
return nil
}
func CompileUniversalBinary() error {
armPath := filepath.Join(buildDir, "alfred-yubico-auth_arm64")
// amdPath := filepath.Join(buildDir, "alfred-yubico-auth_amd64")
// NOTE: Universal binaries can't be compiled because we can't cross compile against the scard
// libraries due to missing headers
if err := CompileBinaryForArch("darwin", "arm64", armPath); err != nil {
return fmt.Errorf("error compiling universal binary %w", err)
}
/*
* if err := CompileBinaryForArch("darwin", "amd64", amdPath); err != nil {
* return fmt.Errorf("error compiling universal binary %w", err)
* }
*/
if err := sh.RunWith(
info.Env(),
"lipo",
"-create",
"-output",
binPath,
armPath,
// amdPath,
); err != nil {
return fmt.Errorf("failed combining binaries to universal %w", err)
}
return nil
}
// Build workflow.
func Build() error {
mg.Deps(cleanBuild)
fmt.Println("Building...")
if err := sh.RunWith(info.Env(), "go", "build", "-o", binPath, "."); err != nil {
if err := CompileUniversalBinary(); err != nil {
return fmt.Errorf("error building binary %w", err)
}