2022-08-17 18:47:09 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os/exec"
|
2022-08-17 19:18:57 +02:00
|
|
|
"path/filepath"
|
2022-08-17 18:47:09 +02:00
|
|
|
"sync"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Compile(cfg *CompileConfig, ch chan<- *CompileReport, wg *sync.WaitGroup) {
|
2022-08-17 19:18:57 +02:00
|
|
|
filePath := filepath.Join(*OutputDir, fmt.Sprintf("%s_%s_%s%s", ProjectName, cfg.OS, cfg.Arch, cfg.FileExt))
|
|
|
|
|
|
|
|
filePath, err := filepath.Abs(filePath)
|
|
|
|
if err != nil {
|
|
|
|
ch <- &CompileReport{Config: cfg, State: StateCompileError}
|
|
|
|
wg.Done()
|
|
|
|
return
|
|
|
|
}
|
2022-08-17 18:47:09 +02:00
|
|
|
|
|
|
|
ch <- &CompileReport{Config: cfg, State: StateCompiling}
|
|
|
|
|
2022-08-17 19:18:57 +02:00
|
|
|
compileCmd := exec.Command("go", "build", "-o", filePath)
|
2022-08-17 18:47:09 +02:00
|
|
|
compileCmd.Dir = ModulePath
|
|
|
|
|
|
|
|
if err := compileCmd.Start(); err != nil {
|
|
|
|
ch <- &CompileReport{Config: cfg, State: StateCompileError}
|
|
|
|
wg.Done()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err := compileCmd.Wait(); err != nil {
|
|
|
|
ch <- &CompileReport{Config: cfg, State: StateCompileError}
|
|
|
|
wg.Done()
|
|
|
|
return
|
|
|
|
}
|
2022-08-17 19:18:57 +02:00
|
|
|
Compress(filePath, cfg, ch, wg)
|
2022-08-17 18:47:09 +02:00
|
|
|
|
|
|
|
// uncomment for independent compile and compress tasks
|
|
|
|
// (slightly slower in tests, most likely because of more context switches)
|
|
|
|
/*
|
|
|
|
ch <- &CompileReport{Config: cfg, State: StateWaiting}
|
2022-08-17 19:18:57 +02:00
|
|
|
go Runner.Run(func() { Compress(filePath, cfg, ch, wg) })
|
2022-08-17 18:47:09 +02:00
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2022-08-17 19:18:57 +02:00
|
|
|
func Compress(filePath string, cfg *CompileConfig, ch chan<- *CompileReport, wg *sync.WaitGroup) {
|
2022-08-17 18:47:09 +02:00
|
|
|
defer wg.Done()
|
|
|
|
|
|
|
|
ch <- &CompileReport{Config: cfg, State: StateCompressing}
|
|
|
|
|
|
|
|
if !*NoCompress && cfg.Compress {
|
2022-08-17 19:18:57 +02:00
|
|
|
compressCmd := exec.Command("upx", "--best", filePath)
|
2022-08-17 18:47:09 +02:00
|
|
|
compressCmd.Dir = ModulePath
|
|
|
|
|
|
|
|
if err := compressCmd.Start(); err != nil {
|
|
|
|
ch <- &CompileReport{Config: cfg, State: StateCompressError}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := compressCmd.Wait(); err != nil {
|
|
|
|
ch <- &CompileReport{Config: cfg, State: StateCompressError}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ch <- &CompileReport{Config: cfg, State: StateDone}
|
|
|
|
}
|