aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/gen_tasks.go
diff options
context:
space:
mode:
authorGravatar Mike Klein <mtklein@chromium.org>2018-03-21 17:27:39 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-03-22 23:53:09 +0000
commite7d5bb7493abff4b17bbc6a5727fe95645e2fd39 (patch)
treec76defb4891a302bec6e22bc6c9a9df7aeb05633 /infra/bots/gen_tasks.go
parent7956b59ba50bbeeaa5bfece6dd9894175168366d (diff)
update Ubuntu14 CT bots to Clang
To run on these older bots, looks like we need to statically link libstdc++ and libgcc. Luckily that is straightforward. Change-Id: If523067df196e943c2ba2f64c52eea0711dbfcbd Reviewed-on: https://skia-review.googlesource.com/115743 Commit-Queue: Mike Klein <mtklein@chromium.org> Reviewed-by: Ravi Mistry <rmistry@google.com>
Diffstat (limited to 'infra/bots/gen_tasks.go')
-rw-r--r--infra/bots/gen_tasks.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/infra/bots/gen_tasks.go b/infra/bots/gen_tasks.go
index 5ae1cb7d7d..3c0ac98030 100644
--- a/infra/bots/gen_tasks.go
+++ b/infra/bots/gen_tasks.go
@@ -668,7 +668,7 @@ func updateMetaConfig(b *specs.TasksCfgBuilder, name string) string {
// generated chain of tasks, which the Job should add as a dependency.
func ctSKPs(b *specs.TasksCfgBuilder, name string) string {
b.MustAddTask(name, &specs.TaskSpec{
- CipdPackages: []*specs.CipdPackage{},
+ CipdPackages: []*specs.CipdPackage{b.MustGetCipdPackageFromAsset("clang_linux")},
Dimensions: []string{
"pool:SkiaCT",
fmt.Sprintf("os:%s", DEFAULT_OS_LINUX_GCE),