Add pkg/build package replacing goreleaser with native build system: - Project discovery (go.mod, wails.json, package.json, composer.json) - Go cross-compilation with GOOS/GOARCH, CGO_ENABLED=0, ldflags - Config loading from .core/build.yaml with sensible defaults - Archive creation (tar.gz for linux/darwin, zip for windows) - SHA256 checksum generation with CHECKSUMS.txt CLI integration via `core build`: - Auto-detect project type or specify with --type - Cross-compile with --targets (e.g., linux/amd64,darwin/arm64) - CI mode with --ci for JSON output - Archive/checksum flags (--archive, --checksum) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
191 lines
5.1 KiB
Go
191 lines
5.1 KiB
Go
// Package build provides project type detection and cross-compilation for the Core build system.
|
|
package build
|
|
|
|
import (
|
|
"archive/tar"
|
|
"archive/zip"
|
|
"compress/gzip"
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
)
|
|
|
|
// Archive creates an archive for a single artifact.
|
|
// Uses tar.gz for linux/darwin and zip for windows.
|
|
// The archive is created alongside the binary (e.g., dist/myapp_linux_amd64.tar.gz).
|
|
// Returns a new Artifact with Path pointing to the archive.
|
|
func Archive(artifact Artifact) (Artifact, error) {
|
|
if artifact.Path == "" {
|
|
return Artifact{}, fmt.Errorf("build.Archive: artifact path is empty")
|
|
}
|
|
|
|
// Verify the source file exists
|
|
info, err := os.Stat(artifact.Path)
|
|
if err != nil {
|
|
return Artifact{}, fmt.Errorf("build.Archive: source file not found: %w", err)
|
|
}
|
|
if info.IsDir() {
|
|
return Artifact{}, fmt.Errorf("build.Archive: source path is a directory, expected file")
|
|
}
|
|
|
|
// Determine archive type based on OS
|
|
var archivePath string
|
|
var archiveFunc func(src, dst string) error
|
|
|
|
if artifact.OS == "windows" {
|
|
archivePath = archiveFilename(artifact, ".zip")
|
|
archiveFunc = createZipArchive
|
|
} else {
|
|
archivePath = archiveFilename(artifact, ".tar.gz")
|
|
archiveFunc = createTarGzArchive
|
|
}
|
|
|
|
// Create the archive
|
|
if err := archiveFunc(artifact.Path, archivePath); err != nil {
|
|
return Artifact{}, fmt.Errorf("build.Archive: failed to create archive: %w", err)
|
|
}
|
|
|
|
return Artifact{
|
|
Path: archivePath,
|
|
OS: artifact.OS,
|
|
Arch: artifact.Arch,
|
|
Checksum: artifact.Checksum,
|
|
}, nil
|
|
}
|
|
|
|
// ArchiveAll archives all artifacts.
|
|
// Returns a slice of new artifacts pointing to the archives.
|
|
func ArchiveAll(artifacts []Artifact) ([]Artifact, error) {
|
|
if len(artifacts) == 0 {
|
|
return nil, nil
|
|
}
|
|
|
|
var archived []Artifact
|
|
for _, artifact := range artifacts {
|
|
arch, err := Archive(artifact)
|
|
if err != nil {
|
|
return archived, fmt.Errorf("build.ArchiveAll: failed to archive %s: %w", artifact.Path, err)
|
|
}
|
|
archived = append(archived, arch)
|
|
}
|
|
|
|
return archived, nil
|
|
}
|
|
|
|
// archiveFilename generates the archive filename based on the artifact and extension.
|
|
// Format: dist/myapp_linux_amd64.tar.gz (binary name taken from artifact path).
|
|
func archiveFilename(artifact Artifact, ext string) string {
|
|
// Get the directory containing the binary (e.g., dist/linux_amd64)
|
|
dir := filepath.Dir(artifact.Path)
|
|
// Go up one level to the output directory (e.g., dist)
|
|
outputDir := filepath.Dir(dir)
|
|
|
|
// Get the binary name without extension
|
|
binaryName := filepath.Base(artifact.Path)
|
|
binaryName = strings.TrimSuffix(binaryName, ".exe")
|
|
|
|
// Construct archive name: myapp_linux_amd64.tar.gz
|
|
archiveName := fmt.Sprintf("%s_%s_%s%s", binaryName, artifact.OS, artifact.Arch, ext)
|
|
|
|
return filepath.Join(outputDir, archiveName)
|
|
}
|
|
|
|
// createTarGzArchive creates a tar.gz archive containing a single file.
|
|
func createTarGzArchive(src, dst string) error {
|
|
// Open the source file
|
|
srcFile, err := os.Open(src)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to open source file: %w", err)
|
|
}
|
|
defer srcFile.Close()
|
|
|
|
srcInfo, err := srcFile.Stat()
|
|
if err != nil {
|
|
return fmt.Errorf("failed to stat source file: %w", err)
|
|
}
|
|
|
|
// Create the destination file
|
|
dstFile, err := os.Create(dst)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to create archive file: %w", err)
|
|
}
|
|
defer dstFile.Close()
|
|
|
|
// Create gzip writer
|
|
gzWriter := gzip.NewWriter(dstFile)
|
|
defer gzWriter.Close()
|
|
|
|
// Create tar writer
|
|
tarWriter := tar.NewWriter(gzWriter)
|
|
defer tarWriter.Close()
|
|
|
|
// Create tar header
|
|
header, err := tar.FileInfoHeader(srcInfo, "")
|
|
if err != nil {
|
|
return fmt.Errorf("failed to create tar header: %w", err)
|
|
}
|
|
// Use just the filename, not the full path
|
|
header.Name = filepath.Base(src)
|
|
|
|
// Write header
|
|
if err := tarWriter.WriteHeader(header); err != nil {
|
|
return fmt.Errorf("failed to write tar header: %w", err)
|
|
}
|
|
|
|
// Write file content
|
|
if _, err := io.Copy(tarWriter, srcFile); err != nil {
|
|
return fmt.Errorf("failed to write file content to tar: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// createZipArchive creates a zip archive containing a single file.
|
|
func createZipArchive(src, dst string) error {
|
|
// Open the source file
|
|
srcFile, err := os.Open(src)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to open source file: %w", err)
|
|
}
|
|
defer srcFile.Close()
|
|
|
|
srcInfo, err := srcFile.Stat()
|
|
if err != nil {
|
|
return fmt.Errorf("failed to stat source file: %w", err)
|
|
}
|
|
|
|
// Create the destination file
|
|
dstFile, err := os.Create(dst)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to create archive file: %w", err)
|
|
}
|
|
defer dstFile.Close()
|
|
|
|
// Create zip writer
|
|
zipWriter := zip.NewWriter(dstFile)
|
|
defer zipWriter.Close()
|
|
|
|
// Create zip header
|
|
header, err := zip.FileInfoHeader(srcInfo)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to create zip header: %w", err)
|
|
}
|
|
// Use just the filename, not the full path
|
|
header.Name = filepath.Base(src)
|
|
header.Method = zip.Deflate
|
|
|
|
// Create file in archive
|
|
writer, err := zipWriter.CreateHeader(header)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to create zip entry: %w", err)
|
|
}
|
|
|
|
// Write file content
|
|
if _, err := io.Copy(writer, srcFile); err != nil {
|
|
return fmt.Errorf("failed to write file content to zip: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|