rill some stuff
This commit is contained in:
parent
57883ffa61
commit
f9c5e4c444
18
findNext.go
18
findNext.go
|
@ -15,10 +15,20 @@ var findFix bool = false
|
||||||
var findOk bool = true
|
var findOk bool = true
|
||||||
|
|
||||||
func rillFixGodeps(repo *gitpb.Repo) error {
|
func rillFixGodeps(repo *gitpb.Repo) error {
|
||||||
|
if repo.GetTargetVersion() == "" {
|
||||||
|
// not set to upgrade
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
if repo.GetLastTag() == repo.GetTargetVersion() {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
if me.forge.Config.IsReadOnly(repo.GetGoPath()) {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
if fixGodeps(repo) {
|
if fixGodeps(repo) {
|
||||||
log.Info("fixGoDeps() returned true")
|
log.Info("Rill fixGoDeps() returned true")
|
||||||
} else {
|
} else {
|
||||||
log.Info("fixGoDeps() returned false")
|
log.Info("Rill fixGoDeps() returned false")
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
@ -28,7 +38,7 @@ func rillFixGodeps(repo *gitpb.Repo) error {
|
||||||
// rename this findNext()
|
// rename this findNext()
|
||||||
func findNext() bool {
|
func findNext() bool {
|
||||||
now := time.Now()
|
now := time.Now()
|
||||||
me.forge.RillFuncError(2, 2, rillFixGodeps)
|
me.forge.RillFuncError(20, 10, rillFixGodeps)
|
||||||
log.Printf("rillFixGodeps() (%d total repos) took:%s\n", me.forge.Repos.Len(), shell.FormatDuration(time.Since(now)))
|
log.Printf("rillFixGodeps() (%d total repos) took:%s\n", me.forge.Repos.Len(), shell.FormatDuration(time.Since(now)))
|
||||||
|
|
||||||
findCounter = 0
|
findCounter = 0
|
||||||
|
@ -50,7 +60,7 @@ func findNext() bool {
|
||||||
log.Info("findNext() skipping readonly")
|
log.Info("findNext() skipping readonly")
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if check.CheckDirty() {
|
if check.IsDirty() {
|
||||||
log.Info("findNext() skipping dirty")
|
log.Info("findNext() skipping dirty")
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue