summaryrefslogtreecommitdiff
path: root/globalTestingOptions.go
blob: a920b8b06e7e1054386a6bc490b9a138583117f8 (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
package main

import (
	"os"
	"strings"

	"go.wit.com/lib/gui/repostatus"
	"go.wit.com/log"

	"go.wit.com/gui"
)

// things being testing
func globalTestingOptions(box *gui.Node) {
	test1 := box.NewGroup("testing build")
	me.autoRebuildButton = test1.NewButton("rebuild autotypist", func() {
		me.autoRebuildButton.Disable()
		me.autoRebuildButton.SetLabel("running....")
		attemptAutoRebuild()
		me.autoRebuildButton.Enable()
		me.autoRebuildButton.SetLabel("rebuild autotypist")
	})

	var everything *gui.Node
	everything = test1.NewButton("go get everything on go.wit.com", func() {
		quickCmdDoNotRun = false
		quickCmds = [][]string{}
		quickCmdLastPath = "/home/jcarr/go/src"
		var perfect bool = true
		repos := myrepolist()
		for _, line := range repos {
			log.Warn("repo =", line)
			path, _, _, _ := splitLine(line)
			path = strings.TrimSpace(path)
			if path == "#" {
				// skip comment lines
				continue
			}
			if doesExist("/home/jcarr/go/src/" + path) {
				continue
			}
			// attempt to download it
			quickCmd("/home/jcarr/go/src/go.wit.com", []string{"go", "get", "-v", path})
			perfect = false
		}

		if perfect {
			var notes [][]string
			notes = append(notes, []string{"you have already downloaded"})
			notes = append(notes, []string{"everything on go.wit.com"})
			me.script = notes
			setGitCommands()
			doit.Disable()
			everything.Disable()
			return
		}

		me.script = quickCmds
		doit.Enable()
		setGitCommands()
	})
	test1.NewButton("build all apps", func() {
		listWindow()
	})
	test1.NewButton("repostatus.ListAll()", func() {
		repostatus.ListAll()
	})
}

func attemptAutoRebuild() {
	os.Setenv("GO111MODULE", "off")
	quickCmdDoNotRun = false

	fullpath := "/home/jcarr/go/"
	quickCmd(fullpath, []string{"mkdir", "-p", "/home/jcarr/go/src/go.wit.com/apps/"})
	fullpath = "/home/jcarr/go/src/go.wit.com/apps/"

	quickCmd(fullpath, []string{"go", "get", "-v", "go.wit.com/apps/autotypist"})
	quickCmd(fullpath, []string{"go", "get", "-v", "go.wit.com/toolkits/debian"})
	quickCmd(fullpath, []string{"go", "get", "-v", "go.wit.com/toolkits/tree"})
	quickCmd(fullpath, []string{"go", "get", "-v", "go.wit.com/toolkits/nocui"})
	quickCmd(fullpath, []string{"go", "get", "-v", "go.wit.com/toolkits/gocui"})
	quickCmd(fullpath, []string{"go", "get", "-v", "go.wit.com/toolkits/andlabs"})

	fullpath = "/home/jcarr/go/src/go.wit.com/toolkits/nocui/"
	quickCmd(fullpath, []string{"go", "get", "-v", "-u", "."})
	quickCmd(fullpath, []string{"go", "build", "-v", "-x", "-buildmode=plugin", "-o", "../nocui.so"})

	fullpath = "/home/jcarr/go/src/go.wit.com/toolkits/gocui/"
	quickCmd(fullpath, []string{"go", "get", "-v", "-u", "."})
	quickCmd(fullpath, []string{"go", "build", "-v", "-x", "-buildmode=plugin", "-o", "../gocui.so"})

	fullpath = "/home/jcarr/go/src/go.wit.com/toolkits/andlabs/"
	quickCmd(fullpath, []string{"go", "get", "-v", "-u", "."})
	quickCmd(fullpath, []string{"go", "build", "-v", "-x", "-buildmode=plugin", "-o", "../andlabs.so"})

	fullpath = "/home/jcarr/go/src/go.wit.com/apps/autotypist"
	quickCmd(fullpath, []string{"go", "get", "-v", "-u", "."})
	quickCmd(fullpath, []string{"go", "build", "-v", "-x"})
	me.script = quickCmds
	setGitCommands()
}