forked from thatisuday/go-cross-build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentrypoint.go
248 lines (191 loc) · 6.33 KB
/
entrypoint.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
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
238
239
240
241
242
243
244
245
246
247
248
package main
import "C"
import (
"fmt"
cp "github.com/otiai10/copy"
"os"
"os/exec"
"path/filepath"
"strings"
)
/*************************************/
// check if file exists (relative to the current directory)
func fileExists(path string) bool {
// get current directory
cwd, _ := os.Getwd()
// get an absolute path of the file
absPath := filepath.Join(cwd, path)
// access file information
if _, err := os.Stat(absPath); err != nil {
return !os.IsNotExist(err) // return `false` if doesn't exist
}
// file exists
return true
}
// copy file using `cp` command
func copyFile(src, dest string) {
if err := exec.Command("cp", src, dest).Run(); err != nil {
fmt.Println("An error occurred during copy operation:", src, "=>", dest)
os.Exit(1)
}
}
/*************************************/
// build the package for a platform
func build(packageName, destDir string, platform map[string]string, ldflags string, compress bool, addFolder string) {
// platform config
platformKernel := platform["kernel"]
platformArch := platform["arch"]
// binary executable file path
inputName := os.Getenv("INPUT_NAME")
// build file name (same as the `inputName` if compression is enabled)
buildFileName := fmt.Sprintf("%s-%s-%s", inputName, platformKernel, platformArch)
if compress {
buildFileName = inputName
}
// append `.exe` file-extension for windows
if platformKernel == "windows" {
buildFileName += ".exe"
}
// workspace directory
workspaceDir := os.Getenv("GITHUB_WORKSPACE")
// destination directory path
destDirPath := filepath.Join(workspaceDir, destDir)
// join destination path
buildFilePath := filepath.Join(destDirPath, buildFileName)
// package directory local path
var packagePath string
if packageName == "" {
packagePath = "."
} else {
packagePath = "./" + packageName
}
/*------------*/
// command-line options for the `go build` command
buildOptions := []string{"build", "-buildmode", "exe", "-ldflags", ldflags, "-o", buildFilePath, packagePath}
// generate `go build` command
buildCmd := exec.Command("go", buildOptions...)
// set environment variables
buildCmd.Env = append(os.Environ(), []string{
fmt.Sprintf("GOOS=%s", platformKernel),
fmt.Sprintf("GOARCH=%s", platformArch),
}...)
// execute `go build` command
fmt.Println("Creating a build using :", buildCmd.String())
if output, err := buildCmd.Output(); err != nil {
fmt.Println("An error occurred during build:", err)
os.Exit(1)
} else {
fmt.Printf("%s\n", output)
}
/*------------------------------*/
// create a compressed `.tar.gz` file
if compress {
// compressed gzip file name
gzFileName := fmt.Sprintf("%s-%s-%s.tar.gz", inputName, platformKernel, platformArch)
/*------------*/
// file to compress (default: build file)
includeFiles := []string{buildFileName}
// copy "README.md" file inside destination directory
if fileExists("README.md") {
copyFile("README.md", filepath.Join(destDirPath, "README.md"))
includeFiles = append(includeFiles, "README.md")
}
// copy "LICENSE" file inside destination directory
if fileExists("LICENSE") {
copyFile("LICENSE", filepath.Join(destDirPath, "LICENSE"))
includeFiles = append(includeFiles, "LICENSE")
}
if addFolder != "" {
err := cp.Copy(addFolder, destDir+"/"+addFolder)
if err != nil {
panic(err)
}
includeFiles = append(includeFiles, addFolder)
}
/*------------*/
// command-line options for the `tar` command
tarOptions := append([]string{"-cvzf", gzFileName}, includeFiles...)
// generate `tar` command
tarCmd := exec.Command("tar", tarOptions...)
// set working directory for the command
tarCmd.Dir = destDirPath
// execute `tar` command
fmt.Println("Compressing build file using:", tarCmd.String())
if err := tarCmd.Run(); err != nil {
fmt.Println("An error occurred during compression:", err)
os.Exit(1)
}
/*------------*/
// generate cleanup command
includeFiles = includeFiles[:len(includeFiles)-1]
cleanCmd := exec.Command("rm", append([]string{"-f"}, includeFiles...)...)
// set working directory for the command
cleanCmd.Dir = destDirPath
// start cleanup process
fmt.Println("Performing cleanup operation using:", cleanCmd.String())
if err := cleanCmd.Run(); err != nil {
fmt.Println("An error occurred during cleanup:", err)
os.Exit(1)
}
// clean the added folder, if any
if addFolder != "" {
cleanDir := exec.Command("rm", "-rf", addFolder)
cleanDir.Dir = destDirPath
fmt.Println("Cleaning the added folder using:", cleanDir.String())
if err := cleanDir.Run(); err != nil {
fmt.Println("An error occurred during cleanup:", err)
os.Exit(1)
}
}
}
}
/*************************************/
func main() {
// get input variables from action
inputPlatforms := os.Getenv("INPUT_PLATFORMS")
inputPackage := os.Getenv("INPUT_PACKAGE")
inputCompress := os.Getenv("INPUT_COMPRESS")
inputDest := os.Getenv("INPUT_DEST")
inputLdflags := os.Getenv("INPUT_LDFLAGS")
inputAddFolder := os.Getenv("INPUT_ADDFOLDER")
// package name to build
packageName := strings.ReplaceAll(inputPackage, " ", "")
// destination directory
destDir := strings.ReplaceAll(inputDest, " ", "")
// split platform names by comma (`,`)
platforms := strings.Split(inputPlatforms, ",")
// should compress build file
compress := false
if strings.ToLower(inputCompress) == "true" {
compress = true
}
// folder to add in the .tar.gz
addFolder := strings.ReplaceAll(inputAddFolder, " ", "")
if addFolder != "" {
if compress == false {
fmt.Println("The AddFolder command can be used ONLY IF the Compress flag is true")
os.Exit(1)
}
}
// for each platform, execute `build` function
for _, platform := range platforms {
// split platform by `/` (and clean all whitespaces)
platformSpec := strings.Split(strings.ReplaceAll(platform, " ", ""), "/")
// create a `map` of `kernel` and `arch`
platformMap := map[string]string{
"kernel": platformSpec[0],
"arch": platformSpec[1],
}
// execute `build` function
build(packageName, destDir, platformMap, inputLdflags, compress, addFolder)
}
/*------------*/
// list files inside destination directory
if output, err := exec.Command("ls", "-alh", destDir).Output(); err != nil {
fmt.Println("An error occurred during ls operation:", err)
os.Exit(1)
} else {
fmt.Println("--- BUILD FILES ---")
fmt.Printf("%s\n", output)
}
}