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

import (
	"go.wit.com/log"
)

func makePrepareRelease() {
	me.Disable()
	me.release.box.Disable()
	defer me.Enable()

	if setAllBranchesToMaster() {
		// if it succeeds, disable this button
		me.setBranchesToMasterB.Disable()
		me.release.box.Enable()
		PrintReleaseReport("", "")
	} else {
		log.Info("setAllBranchesToMaster() failed")
	}

	// reset all the target versions back to the current version
	// incase they were saved in the repos.pb file
	all := me.forge.Repos.SortByGoPath()
	for all.Scan() {
		check := all.Next()

		// set the target version to the current master version
		curver := check.GetMasterVersion()
		check.SetTargetVersion(curver)
	}

	// on startup, run fixGoDeps() on every go.sum that didn't match
	if argv.Fix {
		all := me.forge.Repos.SortByGoPath()
		for all.Scan() {
			check := all.Next()

			if !me.forge.FinalGoDepsCheckOk(check) {
				fixGodeps(check)
			}
		}
	}

	all = me.forge.Repos.SortByGoPath()
	for all.Scan() {
		check := all.Next()

		// if master != lastTag, always increment
		master := check.GetMasterVersion()
		lastTag := check.GetLastTag()
		if master != lastTag {
			// if v1.2.3 change to v.1.2.4
			check.IncrementTargetRevision()
			continue
		}

		// if the repo is a go binary, try forcing new go.* files
		if check.RepoType() == "binary" {
			// check if the package dependancies changed, if so, re-publish
			if me.forge.FinalGoDepsCheckOk(check) {
				log.Printf("go.sum is perfect! %s\n", check.GetGoPath())
			} else {
				log.Printf("dependancy checks indicate a new release is needed for %s\n", check.GetGoPath())
				// if v1.2.3 change to v.1.2.4
				check.IncrementTargetRevision()
			}
		}

	}
	if findNext() {
		log.Info("prepare release findNext() returned true")
		me.release.box.Enable()
	} else {
		log.Info("prepare release findNext() returned false")
		if findNext() {
			log.Info("prepare release findNext() returned true")
			me.release.box.Enable()
		} else {
			log.Info("prepare release findNext() returned false")
		}
	}
}