]> Cypherpunks repositories - gostls13.git/commitdiff
misc/dashboard/builder: increase cmdTimeout to 10 minutes
authorAlex Brainman <alex.brainman@gmail.com>
Mon, 29 Jul 2013 04:31:21 +0000 (14:31 +1000)
committerAlex Brainman <alex.brainman@gmail.com>
Mon, 29 Jul 2013 04:31:21 +0000 (14:31 +1000)
It takes more then 5 minutes to clone go repo
on windows-386 builder now.

R=golang-dev, dave
CC=golang-dev
https://golang.org/cl/12007043

misc/dashboard/builder/main.go

index af7f956e24ea2feda10447fb040f72119367748b..6ef357ad49d8562d767dc20821cd47b203de6349 100644 (file)
@@ -61,7 +61,7 @@ var (
        failAll        = flag.Bool("fail", false, "fail all builds")
        parallel       = flag.Bool("parallel", false, "Build multiple targets in parallel")
        buildTimeout   = flag.Duration("buildTimeout", 60*time.Minute, "Maximum time to wait for builds and tests")
-       cmdTimeout     = flag.Duration("cmdTimeout", 5*time.Minute, "Maximum time to wait for an external command")
+       cmdTimeout     = flag.Duration("cmdTimeout", 10*time.Minute, "Maximum time to wait for an external command")
        commitInterval = flag.Duration("commitInterval", 1*time.Minute, "Time to wait between polling for new commits (0 disables commit poller)")
        verbose        = flag.Bool("v", false, "verbose")
 )