add 'forge merge master'

This commit is contained in:
Jeff Carr 2025-07-07 23:07:12 -05:00
parent 86e513d845
commit 807049f6c7
4 changed files with 47 additions and 1 deletions

View File

@ -167,10 +167,18 @@ func findReposWithPatches() *gitpb.Repos {
continue
}
// this is an old test to see if the current 'last tag' is accurate and should be removed
// ignore read-only repos for checks below here
if me.forge.Config.IsReadOnly(repo.GetGoPath()) {
continue
}
// show anything that differs between 'devel' & 'master' branches
if repo.GetDevelVersion() != repo.GetMasterVersion() {
found.AppendByGoPath(repo)
continue
}
// this is an old test to see if the current 'last tag' is accurate and should be removed
if repo.GetLastTag() != repo.GetMasterVersion() {
found.AppendByGoPath(repo)
repo.FindLastTag()

View File

@ -273,6 +273,7 @@ func findMergeToDevel() *gitpb.Repos {
log.Printf("devel branch check. %d total repos. (%d ok) (%d not on devel branch) (%s)\n", total, count, nope, shell.FormatDuration(time.Since(now)))
return found
}
func findMergeToMaster() *gitpb.Repos {
found := new(gitpb.Repos)

View File

@ -168,3 +168,33 @@ func doMergeDevel() (*gitpb.Repos, error) {
}
return done, err
}
func doMergeMaster() (*gitpb.Repos, error) {
var err error
done := gitpb.NewRepos()
found := findMergeToMaster()
for repo := range found.IterAll() {
if repo.CheckDirty() {
log.Info("repo is dirty", repo.GetGoPath())
continue
}
log.Info("Starting merge on", repo.GetGoPath())
if repo.CheckoutMaster() {
log.Info("checkout devel failed", repo.GetGoPath())
err = fmt.Errorf("checkout devel failed")
break
}
if _, err := repo.MergeToMaster(); err != nil {
log.Info("merge from user failed", repo.GetGoPath(), err)
err = fmt.Errorf("merge from user failed")
// log.Info(strings.Join(r.Stdout, "\n"))
// log.Info(strings.Join(r.Stderr, "\n"))
break
}
done.Append(repo)
}
return done, err
}

View File

@ -146,6 +146,13 @@ func main() {
}
okExit("devel merge ok")
}
if argv.Merge.Master != nil {
if _, err := doMergeMaster(); err != nil {
badExit(err)
}
okExit("master merge ok")
}
badExit(fmt.Errorf("merge what?"))
}