5fc8912087
Will trigger the following: skia.primary: Build-Debian9-Clang-arm-Release-Flutter_Android Build-Debian9-Clang-cf_x86_phone-eng-Android_Framework Build-Debian9-Clang-host-sdk-Android_Framework Build-Debian9-Clang-TAP-Presubmit-G3_Framework luci.chromium.try: mac_chromium_compile_dbg_ng Bug: skia:9154 Change-Id: I88a21865777f7da52e8333920ad9d10da5e788ec Reviewed-on: https://skia-review.googlesource.com/c/skia/+/219482 Reviewed-by: Eric Boren <borenet@google.com> Commit-Queue: Ravi Mistry <rmistry@google.com>
14 lines
342 B
Python
Executable File
14 lines
342 B
Python
Executable File
#! /usr/bin/env python
|
|
|
|
# Copyright 2017 Google Inc.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import json
|
|
import os
|
|
path = os.path.join(os.path.dirname(__file__), os.pardir, 'infra', 'bots', 'tasks.json')
|
|
for j in sorted(json.load(open(path, 'r'))['jobs'].keys()):
|
|
print j
|
|
|