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) } all = me.forge.Repos.SortByGoPath() for all.Scan() { check := all.Next() if me.forge.Config.IsReadOnly(check.GoPath) { // can't release readonly repos continue } // 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() if !runGoClean(check) { log.Info("go-mod-clean FAILED. THIS IS BAD.", check.GoPath) } continue } // if the repo is a go binary, try forcing new go.* files if check.RepoType() != "binary" { // master and lasttag match and it's not a binary. everything is fine continue } // 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()) continue } 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() // run go-mod-clean in each repo that needs to be updated if master == lastTag { // 'git notes' has something in it. clear it out check.Run([]string{"git", "notes", "remove"}) } if !runGoClean(check) { log.Info("go-mod-clean probably failed here. that's ok", check.GoPath) } } 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") } } }