forked from cerc-io/plugeth
build: make linter emit output (#28704)
This commit is contained in:
parent
cd58897f18
commit
952b343cb3
@ -366,7 +366,7 @@ func doLint(cmdline []string) {
|
|||||||
|
|
||||||
linter := downloadLinter(*cachedir)
|
linter := downloadLinter(*cachedir)
|
||||||
lflags := []string{"run", "--config", ".golangci.yml"}
|
lflags := []string{"run", "--config", ".golangci.yml"}
|
||||||
build.MustRunCommand(linter, append(lflags, packages...)...)
|
build.MustRunCommandWithOutput(linter, append(lflags, packages...)...)
|
||||||
fmt.Println("You have achieved perfection.")
|
fmt.Println("You have achieved perfection.")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -68,6 +68,25 @@ func MustRunCommand(cmd string, args ...string) {
|
|||||||
MustRun(exec.Command(cmd, args...))
|
MustRun(exec.Command(cmd, args...))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func MustRunCommandWithOutput(cmd string, args ...string) {
|
||||||
|
var done chan bool
|
||||||
|
// This is a little loop to generate some output, so CI does not tear down the
|
||||||
|
// process after 300 seconds.
|
||||||
|
go func() {
|
||||||
|
for i := 0; i < 15; i++ {
|
||||||
|
fmt.Printf("Waiting for command %q\n", cmd)
|
||||||
|
select {
|
||||||
|
case <-time.After(time.Minute):
|
||||||
|
break
|
||||||
|
case <-done:
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
MustRun(exec.Command(cmd, args...))
|
||||||
|
close(done)
|
||||||
|
}
|
||||||
|
|
||||||
var warnedAboutGit bool
|
var warnedAboutGit bool
|
||||||
|
|
||||||
// RunGit runs a git subcommand and returns its output.
|
// RunGit runs a git subcommand and returns its output.
|
||||||
|
Loading…
Reference in New Issue
Block a user