guireleaser/findNext.go

155 lines
4.3 KiB
Go
Raw Normal View History

// This is a simple example
package main
import (
2024-12-16 00:19:03 -06:00
"strings"
"go.wit.com/log"
"go.wit.com/lib/protobuf/gitpb"
)
2024-12-02 10:43:48 -06:00
var findCounter int
var findFix bool = false
2024-12-11 01:19:07 -06:00
var findOk bool = true
2024-12-02 10:43:48 -06:00
// trys to figure out if there is still something to update
// todo: redo this logic as it is terrible
// rename this findNext()
func findNext() bool {
2024-12-02 10:43:48 -06:00
findCounter = 0
2024-12-17 18:48:45 -06:00
all := me.forge.Repos.SortByFullPath()
for all.Scan() {
check := all.Next()
2024-12-17 18:48:45 -06:00
if check.GetTargetVersion() == "" {
// not set to upgrade
continue
}
2024-12-17 13:13:15 -06:00
if check.GetLastTag() == check.GetTargetVersion() {
2024-12-17 07:03:17 -06:00
// log.Info("findNext() no update needed", check.GetGoPath, check.GetTargetVersion(), "vs", check.GetCurrentBranchVersion())
continue
} else {
2024-12-17 07:03:17 -06:00
log.Info("findNext() update needed", check.GetGoPath(), check.GetTargetVersion(), "vs", check.GetCurrentBranchVersion())
}
2024-12-17 07:03:17 -06:00
if me.forge.Config.IsReadOnly(check.GetGoPath()) {
log.Info("findNext() skipping readonly")
continue
}
if check.CheckDirty() {
log.Info("findNext() skipping dirty")
continue
}
2024-12-02 10:43:48 -06:00
if findFix {
log.Info("findFix is true. running fixGoDeps()")
if fixGodeps(check) {
log.Info("fixGoDeps() returned true")
} else {
log.Info("fixGoDeps() returned false")
}
2024-12-02 10:43:48 -06:00
}
findCounter += 1
2024-12-18 20:08:48 -06:00
if !check.ParseGoSum() {
continue
}
2024-12-02 08:45:13 -06:00
if me.forge.FinalGoDepsCheckOk(check) {
2024-12-17 18:48:45 -06:00
setCurrentRepo(check, "should be good to release", "pretty sure")
return true
}
2024-12-17 18:48:45 -06:00
log.Info("findNext() got to the end. repo", check.GetGoPath(), "did not work. trying to find a new one now")
}
if findCounter == 0 {
log.Info("NOTHING TO UPDATE. findCounter =", findCounter)
} else {
findFix = true
log.Info("me.current is nil findCounter =", findCounter, "so set findFix =", findFix)
2024-12-02 10:43:48 -06:00
}
log.Info("tried to findNext() but not sure what to do next counter =", findCounter, "findFix =", findFix)
me.release.status.SetText("ALL DONE?")
return false
}
2024-12-18 20:08:48 -06:00
func runGoClean(check *gitpb.Repo, myarg string) bool {
2024-12-02 05:13:17 -06:00
// check if the package dependancies changed, if so, re-publish
2024-12-13 02:21:39 -06:00
check.GoDeps = nil
2024-12-18 20:08:48 -06:00
cmd := []string{"go-mod-clean", myarg}
2024-12-17 07:03:17 -06:00
log.Info("Running", cmd, "in", check.GetGoPath())
2024-12-16 00:19:03 -06:00
result := check.Run(cmd)
2024-12-12 02:05:47 -06:00
if result.Error != nil {
2024-12-17 07:03:17 -06:00
log.Info(cmd, "failed with", result.Error, check.GetGoPath())
2024-12-16 00:19:03 -06:00
log.Info("STDOUT")
log.Info(strings.Join(result.Stdout, "\n"))
log.Info("STDERR")
log.Info(strings.Join(result.Stderr, "\n"))
2024-12-12 02:05:47 -06:00
return false
}
if result.Exit != 0 {
2024-12-17 07:03:17 -06:00
log.Info(cmd, "failed with", result.Exit, check.GetGoPath())
2024-12-16 00:19:03 -06:00
log.Info("STDOUT")
log.Info(strings.Join(result.Stdout, "\n"))
log.Info("STDERR")
log.Info(strings.Join(result.Stderr, "\n"))
2024-12-12 02:05:47 -06:00
return false
}
2024-12-18 20:08:48 -06:00
if check.ParseGoSum() {
return true
2024-12-13 02:21:39 -06:00
}
2024-12-18 20:08:48 -06:00
log.Info("ParseGoSum() failed")
return false
2024-12-13 02:21:39 -06:00
}
// tries to fix the go.mod and go.sum files
func fixGodeps(check *gitpb.Repo) bool {
var good bool = true
2024-12-18 20:08:48 -06:00
if !runGoClean(check, "--strict") {
2024-12-13 02:21:39 -06:00
return false
}
// skip primative ones
2024-12-17 20:47:35 -06:00
if check.GetGoPrimitive() {
if check.Exists("go.sum") {
log.Info("fixGoDeps() has go.sum but says it is primitive", check.GetGoPath())
return false
}
2024-12-17 07:03:17 -06:00
log.Info("fixGoDeps() skipping primitive", check.GetGoPath())
return true
}
2024-12-02 05:13:17 -06:00
log.Printf("current repo %s go dependancy count: %d", check.GetGoPath(), check.GoDepsLen())
deps := check.GoDeps.SortByGoPath()
for deps.Scan() {
depRepo := deps.Next()
// log.Info("found dep", depRepo.GetGoPath())
2024-12-17 07:03:17 -06:00
if me.forge.Config.IsReadOnly(depRepo.GetGoPath()) {
2024-12-02 05:13:17 -06:00
log.Info("IsReadOnly = true", depRepo.GetGoPath())
continue
2024-12-02 05:13:17 -06:00
} else {
// log.Info("IsReadOnly = false", depRepo.GetGoPath())
}
2024-12-17 07:03:17 -06:00
found := me.forge.FindByGoPath(depRepo.GetGoPath())
2024-12-02 05:13:17 -06:00
if found == nil {
log.Info("not found:", depRepo.GetGoPath())
continue
}
if depRepo.GetVersion() != found.GetMasterVersion() {
log.Printf("%-48s %10s (gitpb depRepo)", depRepo.GetGoPath(), depRepo.GetVersion())
log.Printf("%-48s %10s (gitpb found)", found.GetGoPath(), found.GetMasterVersion())
2024-12-02 05:13:17 -06:00
cmd := []string{"go", "get", depRepo.GetGoPath() + "@latest"}
check.Run(cmd)
}
}
return good
}
2024-12-03 18:00:42 -06:00
2024-12-17 18:48:45 -06:00
func setCurrentRepo(check *gitpb.Repo, s string, note string) bool {
2024-12-17 07:03:17 -06:00
me.release.repo.SetText(check.GetGoPath())
2024-12-03 18:00:42 -06:00
me.release.status.SetText(s)
me.release.notes.SetText(note)
2024-12-17 18:48:45 -06:00
me.current = check
2024-12-03 18:00:42 -06:00
me.release.version.SetText(check.GetTargetVersion())
me.release.releaseVersionB.SetText("release version " + check.GetTargetVersion())
me.release.openrepo.Enable()
return true
}