2015-10-17 18:50:51 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
func buildV2Ray(targetFile string, version string, goOS GoOS, goArch GoArch) error {
|
2017-02-23 05:59:32 -05:00
|
|
|
goPath := os.Getenv("GOPATH")
|
2015-10-17 18:50:51 -04:00
|
|
|
ldFlags := "-s"
|
2015-10-18 07:14:34 -04:00
|
|
|
if version != "custom" {
|
2015-10-17 18:50:51 -04:00
|
|
|
year, month, day := time.Now().UTC().Date()
|
|
|
|
today := fmt.Sprintf("%04d%02d%02d", year, int(month), day)
|
2016-08-20 14:55:45 -04:00
|
|
|
ldFlags = ldFlags + " -X v2ray.com/core.version=" + version + " -X v2ray.com/core.build=" + today
|
2015-10-17 18:50:51 -04:00
|
|
|
}
|
2017-02-23 05:59:32 -05:00
|
|
|
cmd := exec.Command(
|
|
|
|
"go", "build",
|
|
|
|
"-tags", "json",
|
|
|
|
"-o", targetFile,
|
|
|
|
"-compiler", "gc",
|
|
|
|
"-ldflags", ldFlags,
|
|
|
|
"-gcflags", "-trimpath="+goPath,
|
|
|
|
"-asmflags", "-trimpath="+goPath,
|
|
|
|
"v2ray.com/core/main")
|
2016-12-01 15:38:13 -05:00
|
|
|
cmd.Env = append(cmd.Env, "GOOS="+string(goOS), "GOARCH="+string(goArch), "CGO_ENABLED=0")
|
2015-10-17 18:50:51 -04:00
|
|
|
cmd.Env = append(cmd.Env, os.Environ()...)
|
2015-10-18 07:14:34 -04:00
|
|
|
output, err := cmd.CombinedOutput()
|
|
|
|
if len(output) > 0 {
|
|
|
|
fmt.Println(string(output))
|
|
|
|
}
|
2015-10-17 18:50:51 -04:00
|
|
|
return err
|
|
|
|
}
|
2017-02-23 08:48:44 -05:00
|
|
|
|
|
|
|
func signFile(file string) error {
|
|
|
|
pass := os.Getenv("GPG_SIGN_PASS")
|
2017-02-23 09:18:40 -05:00
|
|
|
cmd := exec.Command("gpg", "--no-tty", "--batch", "--passphrase", pass, "--output", file+".sig", "--detach-sig", file)
|
2017-02-23 08:48:44 -05:00
|
|
|
cmd.Env = append(cmd.Env, os.Environ()...)
|
|
|
|
output, err := cmd.CombinedOutput()
|
|
|
|
if len(output) > 0 {
|
|
|
|
fmt.Println(string(output))
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|