- Add tar.xz archive support using Borg's compress package - ArchiveXZ() and ArchiveWithFormat() for configurable compression - Better compression ratio than gzip for release artifacts - Consolidate 12 installer scripts into 2 unified scripts - install.sh and install.bat with BunnyCDN edge variable support - Subdomains: setup.core.help, ci.core.help, dev.core.help, etc. - MODE and VARIANT transformed at edge based on subdomain - Installers prefer tar.xz with automatic fallback to tar.gz - Fixed CodeRabbit issues: HTTP status patterns, tar error handling, verify_install params, VARIANT validation, CI PATH persistence Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
291 lines
8.4 KiB
Go
291 lines
8.4 KiB
Go
// Package build provides project type detection and cross-compilation for the Core build system.
|
|
package build
|
|
|
|
import (
|
|
"archive/tar"
|
|
"archive/zip"
|
|
"bytes"
|
|
"compress/gzip"
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/Snider/Borg/pkg/compress"
|
|
)
|
|
|
|
// ArchiveFormat specifies the compression format for archives.
|
|
type ArchiveFormat string
|
|
|
|
const (
|
|
// ArchiveFormatGzip uses tar.gz (gzip compression) - widely compatible.
|
|
ArchiveFormatGzip ArchiveFormat = "gz"
|
|
// ArchiveFormatXZ uses tar.xz (xz/LZMA2 compression) - better compression ratio.
|
|
ArchiveFormatXZ ArchiveFormat = "xz"
|
|
// ArchiveFormatZip uses zip - for Windows.
|
|
ArchiveFormatZip ArchiveFormat = "zip"
|
|
)
|
|
|
|
// Archive creates an archive for a single artifact using gzip compression.
|
|
// 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) {
|
|
return ArchiveWithFormat(artifact, ArchiveFormatGzip)
|
|
}
|
|
|
|
// ArchiveXZ creates an archive for a single artifact using xz compression.
|
|
// Uses tar.xz for linux/darwin and zip for windows.
|
|
// Returns a new Artifact with Path pointing to the archive.
|
|
func ArchiveXZ(artifact Artifact) (Artifact, error) {
|
|
return ArchiveWithFormat(artifact, ArchiveFormatXZ)
|
|
}
|
|
|
|
// ArchiveWithFormat creates an archive for a single artifact with the specified format.
|
|
// Uses tar.gz or tar.xz for linux/darwin and zip for windows.
|
|
// The archive is created alongside the binary (e.g., dist/myapp_linux_amd64.tar.xz).
|
|
// Returns a new Artifact with Path pointing to the archive.
|
|
func ArchiveWithFormat(artifact Artifact, format ArchiveFormat) (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 and format
|
|
var archivePath string
|
|
var archiveFunc func(src, dst string) error
|
|
|
|
if artifact.OS == "windows" {
|
|
archivePath = archiveFilename(artifact, ".zip")
|
|
archiveFunc = createZipArchive
|
|
} else {
|
|
switch format {
|
|
case ArchiveFormatXZ:
|
|
archivePath = archiveFilename(artifact, ".tar.xz")
|
|
archiveFunc = createTarXzArchive
|
|
default:
|
|
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 using gzip compression.
|
|
// Returns a slice of new artifacts pointing to the archives.
|
|
func ArchiveAll(artifacts []Artifact) ([]Artifact, error) {
|
|
return ArchiveAllWithFormat(artifacts, ArchiveFormatGzip)
|
|
}
|
|
|
|
// ArchiveAllXZ archives all artifacts using xz compression.
|
|
// Returns a slice of new artifacts pointing to the archives.
|
|
func ArchiveAllXZ(artifacts []Artifact) ([]Artifact, error) {
|
|
return ArchiveAllWithFormat(artifacts, ArchiveFormatXZ)
|
|
}
|
|
|
|
// ArchiveAllWithFormat archives all artifacts with the specified format.
|
|
// Returns a slice of new artifacts pointing to the archives.
|
|
func ArchiveAllWithFormat(artifacts []Artifact, format ArchiveFormat) ([]Artifact, error) {
|
|
if len(artifacts) == 0 {
|
|
return nil, nil
|
|
}
|
|
|
|
var archived []Artifact
|
|
for _, artifact := range artifacts {
|
|
arch, err := ArchiveWithFormat(artifact, format)
|
|
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)
|
|
}
|
|
|
|
// createTarXzArchive creates a tar.xz archive containing a single file.
|
|
// Uses Borg's compress package for xz compression.
|
|
func createTarXzArchive(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 tar archive in memory
|
|
var tarBuf bytes.Buffer
|
|
tarWriter := tar.NewWriter(&tarBuf)
|
|
|
|
// Create tar header
|
|
header, err := tar.FileInfoHeader(srcInfo, "")
|
|
if err != nil {
|
|
return fmt.Errorf("failed to create tar header: %w", err)
|
|
}
|
|
header.Name = filepath.Base(src)
|
|
|
|
if err := tarWriter.WriteHeader(header); err != nil {
|
|
return fmt.Errorf("failed to write tar header: %w", err)
|
|
}
|
|
|
|
if _, err := io.Copy(tarWriter, srcFile); err != nil {
|
|
return fmt.Errorf("failed to write file content to tar: %w", err)
|
|
}
|
|
|
|
if err := tarWriter.Close(); err != nil {
|
|
return fmt.Errorf("failed to close tar writer: %w", err)
|
|
}
|
|
|
|
// Compress with xz using Borg
|
|
xzData, err := compress.Compress(tarBuf.Bytes(), "xz")
|
|
if err != nil {
|
|
return fmt.Errorf("failed to compress with xz: %w", err)
|
|
}
|
|
|
|
// Write to destination file
|
|
if err := os.WriteFile(dst, xzData, 0644); err != nil {
|
|
return fmt.Errorf("failed to write archive file: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// 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
|
|
}
|