summaryrefslogtreecommitdiff
path: root/build.go
blob: 0c95e717642afa2cbf0fd8426c12600d85d46d09 (plain)
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
package main

import (
	"errors"
	"fmt"
	"os"
	"path/filepath"
	"strings"
	"time"

	"go.wit.com/lib/debian"
	"go.wit.com/lib/gui/shell"
	"go.wit.com/lib/protobuf/gitpb"
	"go.wit.com/log"
)

func buildPackage(repo *gitpb.Repo) (bool, error) {
	filename := me.pb.Package
	arch := me.pb.Architecture
	version := me.pb.Version
	log.Info("version is:", version)

	debname := filename + "_" + version + "_" + arch + ".deb"
	var fulldebname string
	if argv.OutDir == "" {
		fulldebname = debname
	} else {
		fulldebname = filepath.Join(argv.OutDir, debname)
	}
	if shell.Exists(fulldebname) {
		log.Info("debian package already built: " + fulldebname)
		return true, errors.New("debian package already built: " + fulldebname)

	}

	var fullfilename string
	_, fullfilename = filepath.Split(filename)

	if fullfilename == "" {
		log.Info("fullfilename =", fullfilename)
		badExit(log.Errorf("binary name was blank"))
	}
	if fullfilename == "." {
		log.Info("fullfilename =", fullfilename)
		badExit(log.Errorf("binary name was ."))
	}
	if shell.Exists(fullfilename) {
		repo.RunVerbose([]string{"rm", "-f", fullfilename})
	}

	if shell.Exists(fullfilename) {
		// something wrong
		return false, errors.New("binary existed before build")
	}

	if argv.Release {
		os.Unsetenv("GO111MODULE")
		cmd := []string{"go"}
		cmd = append(cmd, "install")
		if argv.Verbose {
			cmd = append(cmd, "-v")
			cmd = append(cmd, "-x")
		}
		cmd = append(cmd, repo.Namespace+"@v"+version)
		if err := shell.PathExecVerbose("", cmd); err != nil {
			badExit(err)
			return false, fmt.Errorf("go build err %v", err)
		}
		/*
			cmd = []string{"go"}
			cmd = append(cmd, "build")
			if argv.Verbose {
				cmd = append(cmd, "-v")
				cmd = append(cmd, "-x")
			}
			cmd = append(cmd, "this should be the path")
			if err := shell.PathExecVerbose("", cmd); err != nil {
				badExit(err)
				return false, fmt.Errorf("go build err %v", err)
			}
		*/
		log.Warn("build worked")
	} else {
		// set the GO111 build var to true. pass the versions to the compiler manually
		os.Setenv("GO111MODULE", "off")
		if argv.Arch == "riscv64" {
			os.Setenv("GOARCH", "riscv64")
			// GOOS=windows GOARCH=amd64 GO111MODULE=off go build -v -o wit.exe \
		}
		cmd := []string{"go", "build"}
		// set standard ldflag options
		now := time.Now()
		var datestamp string
		datestamp = log.Sprintf("%d", now.Unix())
		log.Info("datestamp =", datestamp)
		// add some standard golang flags
		var ldflags string
		if argv.Release {
			//   * -w: Omit the DWARF symbol table.
			//   * -s: Omit the symbol table and debug information.
			ldflags += "-s -w "
		}
		ldflags += "-X main.VERSION=" + version + " "
		ldflags += "-X main.BUILDTIME=" + datestamp + " "
		ldflags += "-X main.GUIVERSION=" + version + "" // todo: git this from the filesystem
		cmd = append(cmd, "-ldflags", ldflags)

		// add any flags from the command line
		// this might not actually work
		// todo: test this
		for _, flag := range argv.Ldflags {
			cmd = append(cmd, "-ldflags", "-X "+flag)
		}

		err := repo.RunVerbose(cmd)
		if err != nil {
			return false, fmt.Errorf("go build err %v", err)
		}
		log.Warn("go build worked")
	}

	if shell.Exists("files") {
		repo.RunVerbose([]string{"rm", "-rf", "files"})
		// log.Info("running sync")
		repo.RunVerbose([]string{"sync"})
		if shell.Exists("files") {
			log.Warn("rm failed for some reason")
			return false, errors.New("rm files/")
		}
	}
	repo.RunVerbose([]string{"sync"}) // for some reason the next check fails sometimes?
	if shell.Exists("files") {
		// probably the 'shell' package id being stupid and not waiting for the process to actually exit
		log.Warn("rm failed. files/ still exists. is golang doing these in parallel?")
		return false, errors.New("rm files/")
	}
	if err := os.MkdirAll("files/DEBIAN", os.ModePerm); err != nil {
		return false, errors.New("mkdir files/DEBIAN")
	}
	if err := os.MkdirAll("files/usr/bin", os.ModePerm); err != nil {
		log.Warn("mkdir failed")
		return false, errors.New("mkdir files/usr/bin")
	}
	if os.Getenv("GO_DEB_CUSTOM") == "true" {
		// skip cp & strip on custom 'control' files
		// probably deprecate this
		log.Info("REPO GO_DEB_CUSTOM=true means binary is not copied")
	} else {
		_, fname := filepath.Split(repo.GetFullPath())
		cmd := []string{"cp", fname, "files/usr/bin"}
		log.Info("REPO FILENAME cp", cmd)
		if err := repo.RunVerbose(cmd); err != nil {
			log.Warn("cp failed")
			return false, err
		}
		if argv.Arch == "amd64" {
			cmd = []string{"strip", "files/usr/bin/" + fname}
			if err := repo.RunVerbose(cmd); err != nil {
				log.Warn("strip failed")
				return false, err
			}
		}
	}

	// put the README in there (if missing, generate it?)
	var readme string = ""
	if shell.Exists("README.md") {
		readme = "README.md"
	}

	if shell.Exists("README") {
		readme = "README"
	}

	if readme != "" {
		path := filepath.Join("files/usr/share/doc/" + filename)
		if err := os.MkdirAll(path, os.ModePerm); err != nil {
			return false, errors.New("mkdir failed on files/usr/share/doc")
		}
		if err := repo.RunVerbose([]string{"cp", readme, path}); err != nil {
			return false, err
		}
	}

	if shell.Exists("postinst") {
		repo.RunVerbose([]string{"cp", "postinst", "files/DEBIAN/"})
	}

	// experiment for the toolkit package
	// if the git repo has a "./build" script run it before packaging
	// this way the user can put custom files in the .deb package
	if shell.Exists("build") {
		log.Info(repo.FullPath, "FOUND ./build HERE")
		repo.RunVerbose([]string{"./build"})
	} else {
		log.Info(repo.FullPath, "NOT FOUND ./build HERE")
	}

	r := repo.Run([]string{"du", "-s"})
	if len(r.Stdout) != 1 {
		me.argv.BadExit("du -s files/ failed", r.Error)
	}
	me.pb.DebInfo.InstalledSize = strings.Fields(r.Stdout[0])[0]
	controlfile := debian.MakeControlFile(me.pb)
	controlfile += "\n"
	log.Info(controlfile)
	if err := os.WriteFile("files/DEBIAN/control", []byte(controlfile), 0644); err != nil {
		me.argv.BadExit("write err files/DEBIAN/control", err)
	}

	cmd := []string{"dpkg-deb", "--root-owner-group", "--build", "files", fulldebname}
	result := repo.RunVerbose(cmd)
	if shell.Exists(fulldebname) {
	} else {
		log.Warn("CMD FAILED", cmd, result)
		log.Warn("build failed: full name was not created:", fulldebname)
		return false, errors.New("dpkg-deb --build failed")
	}
	repo.RunVerbose([]string{"dpkg-deb", "-I", fulldebname})
	repo.RunVerbose([]string{"dpkg-deb", "-c", fulldebname})

	// cleanup files
	if shell.Exists("files") {
		if argv.KeepFiles {
			log.Info("keeping the build files/")
		} else {
			repo.RunVerbose([]string{"rm", "-rf", "files"})
			// log.Info("running sync")
			repo.RunVerbose([]string{"sync"})
			if shell.Exists("files") {
				log.Warn("rm -rf files/ failed. Run() returned false")
				return false, errors.New("rm files/")
			}
		}
	}
	return true, nil
}