internal/build: prevent travis timeout during ppa upload (#24589)
This commit is contained in:
parent
19b9cf714f
commit
d1c243f841
|
@ -31,6 +31,7 @@ import (
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
"text/template"
|
"text/template"
|
||||||
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
var DryRunFlag = flag.Bool("n", false, "dry run, don't execute commands")
|
var DryRunFlag = flag.Bool("n", false, "dry run, don't execute commands")
|
||||||
|
@ -137,7 +138,23 @@ func UploadSFTP(identityFile, host, dir string, files []string) error {
|
||||||
for _, f := range files {
|
for _, f := range files {
|
||||||
fmt.Fprintln(in, "put", f, path.Join(dir, filepath.Base(f)))
|
fmt.Fprintln(in, "put", f, path.Join(dir, filepath.Base(f)))
|
||||||
}
|
}
|
||||||
|
// Avoid travis timout after 10m of inactivity by printing something
|
||||||
|
// every 8 minutes.
|
||||||
|
done := make(chan bool)
|
||||||
|
go func() {
|
||||||
|
for {
|
||||||
|
select {
|
||||||
|
case <-time.After(8 * time.Minute):
|
||||||
|
fmt.Println("keepalive log")
|
||||||
|
continue
|
||||||
|
case <-done:
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}()
|
||||||
stdin.Close()
|
stdin.Close()
|
||||||
|
defer close(done)
|
||||||
return sftp.Wait()
|
return sftp.Wait()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue