func()

in helpers/foundation-deployer/gcp/gcp.go [73:82]


func (g GCP) GetRunningBuildID(t testing.TB, projectID, region, filter string) string {
	time.Sleep(g.sleepTime * time.Second)
	builds := g.GetBuilds(t, projectID, region, filter)
	for id, status := range builds {
		if status == StatusQueued || status == StatusWorking {
			return id
		}
	}
	return ""
}