Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/angle
Path: blob/main_old/infra/config/PRESUBMIT.py
1697 views
1
# Copyright 2019 The ANGLE Project Authors. All rights reserved.
2
# Use of this source code is governed by a BSD-style license that can be
3
# found in the LICENSE file.
4
5
6
def CheckChangeOnUpload(input_api, output_api):
7
return input_api.RunTests(
8
input_api.canned_checks.CheckLucicfgGenOutput(input_api, output_api, 'main.star'))
9
10
11
def CheckChangeOnCommit(input_api, output_api):
12
return CheckChangeOnUpload(input_api, output_api)
13
14