58d1f76fc0
This reverts commitde71a74fc4
. Reason for revert: Reland with fixes Original change's description: > Revert "[infra] Make most builds idempotent" > > This reverts commit57aa178dea
. > > Reason for revert: Causes Build-Debian9-Clang-x86-devrel-Android_SKQP to fail > > Original change's description: > > [infra] Make most builds idempotent > > > > Change-Id: I084645a46feda183747e9d7fc3b40b1aa56c5f78 > > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/211103 > > Commit-Queue: Eric Boren <borenet@google.com> > > Reviewed-by: Ben Wagner aka dogben <benjaminwagner@google.com> > > TBR=borenet@google.com,benjaminwagner@google.com > > Change-Id: I886483a01c53da2cb7816651a02b35b780ffcf67 > No-Presubmit: true > No-Tree-Checks: true > No-Try: true > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/228441 > Reviewed-by: Ben Wagner aka dogben <benjaminwagner@google.com> > Commit-Queue: Ben Wagner aka dogben <benjaminwagner@google.com> TBR=borenet@google.com,benjaminwagner@google.com Change-Id: Ie5462e06da06ec835eaa49778111afa063f9404a No-Presubmit: true No-Tree-Checks: true No-Try: true Reviewed-on: https://skia-review.googlesource.com/c/skia/+/228556 Reviewed-by: Eric Boren <borenet@google.com> Commit-Queue: Eric Boren <borenet@google.com>
19 lines
359 B
Go
19 lines
359 B
Go
// Copyright 2016 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
package main
|
|
|
|
/*
|
|
Generate the tasks.json file.
|
|
*/
|
|
|
|
import (
|
|
"go.skia.org/skia/infra/bots/gen_tasks_logic"
|
|
)
|
|
|
|
// Regenerate the tasks.json file.
|
|
func main() {
|
|
gen_tasks_logic.GenTasks(nil)
|
|
}
|