Unverified Commit d1c243f8 authored by Martin Holst Swende's avatar Martin Holst Swende Committed by GitHub

internal/build: prevent travis timeout during ppa upload (#24589)

parent 19b9cf71
......@@ -31,6 +31,7 @@ import (
"path/filepath"
"strings"
"text/template"
"time"
)
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 {
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()
defer close(done)
return sftp.Wait()
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment