-
Notifications
You must be signed in to change notification settings - Fork 855
/
Copy pathrelease.go
executable file
·59 lines (51 loc) · 1.21 KB
/
release.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package main
import (
"flag"
"fmt"
"log"
"os"
"os/exec"
"strings"
)
func main() {
docker := flag.Bool("docker", false, "create a docker release")
flag.Parse()
version := os.Getenv("VERSION")
sha := os.Getenv("GITHUB_SHA")
if version == "" {
cmd := exec.Command("git", "show", "--no-patch", "--no-notes", "--pretty=%ci", sha)
out, err := cmd.CombinedOutput()
if err != nil {
log.Println(strings.TrimSpace(string(out)))
log.Fatal(err)
}
var date string
parts := strings.Split(string(out), " ")
date = strings.Replace(parts[0]+parts[1], "-", "", -1)
date = strings.Replace(date, ":", "", -1)
version = fmt.Sprintf("v0.0.0-%s-%s", date, sha[:12])
}
if *docker {
x := "-extldflags \"-static\" -X github.com/sqlc-dev/sqlc/internal/cmd.version=" + version
args := []string{
"build",
"-a",
"-ldflags", x,
"-o", "/workspace/sqlc",
"./cmd/sqlc",
}
cmd := exec.Command("go", args...)
cmd.Env = os.Environ()
out, err := cmd.CombinedOutput()
if err != nil {
log.Println(strings.TrimSpace(string(out)))
log.Fatal(err)
}
return
}
arch := flag.Arg(0)
if arch == "" {
log.Fatalf("missing platform_arch argument")
}
log.Fatal("publishing to Equinox has been disabled")
}