当前仓库属于关闭状态,部分功能使用受限,详情请查阅 仓库状态说明
10 Star 0 Fork 6

OpenHarmony-TPC/chromium_docs_website
关闭

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
PRESUBMIT.py 3.52 KB
一键复制 编辑 原始数据 按行查看 历史
李想 提交于 2023-08-12 11:01 +08:00 . chromium 99.0.4844.88 origin init
# Copyright (c) 2021 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.
"""Top-level presubmit script for the Git repo backing chromium.org.
See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts
for more details about the presubmit API built into depot_tools.
"""
import os
PRESUBMIT_VERSION = '2.0.0'
# This line is 'magic' in that git-cl looks for it to decide whether to
# use Python3 instead of Python2 when running the code in this file.
USE_PYTHON3 = True
# This list must be kept in sync with the lists in //.eleventy.js and
# //scripts/upload_lobs.py.
# TODO(dpranke): Figure out how to share these lists to eliminate the
# duplication and need to keep them in sync.
LOB_EXTENSIONS = [
'.ai',
'.bin',
'.bmp',
'.brd',
'.bz2',
'.crx',
'.config',
'.dia',
'.gif',
'.graffle',
'.ico',
'.jpg',
'jpg', # Some files are missing the '.' :(.
'.jpeg',
'.mp4',
'.msi',
'.pdf',
'pdf', # Some files are missing the '.' :(.
'.png',
'png', # Some files are missing the '.' :(.
'.PNG',
'.swf',
'.svg',
'.tar.gz',
'.tiff',
'_trace',
'.webp',
'.xcf',
'.xlsx',
'.zip'
]
def CheckPatchFormatted(input_api, output_api):
return input_api.canned_checks.CheckPatchFormatted(input_api, output_api)
def CheckChangeHasDescription(input_api, output_api):
return input_api.canned_checks.CheckChangeHasDescription(
input_api, output_api)
def CheckForLobs(input_api, output_api):
output_status = []
for file in input_api.change.AffectedFiles():
# The tar.gz for example prevents using a hashmap to look up the extension
for ext in LOB_EXTENSIONS:
if str(file).endswith(ext) and file.Action() != 'D':
error_msg = ('The file \'{file_name}\' is a binary that has not been '
'uploaded to GCE. Please run:\n\tscripts/upload_lobs.py '
'"{file_name}"\nand commit {file_name}.sha1 instead\n'
'Run:\n\tgit rm --cached "{file_name}"\nto remove the lob from git'
.format(file_name = file.LocalPath()))
error = output_api.PresubmitError(error_msg)
output_status.append(error)
break
return output_status
def CheckLobIgnores(input_api, output_api):
output_status = []
with open("site/.gitignore", 'r') as ignore_file:
ignored_lobs = list(line.rstrip() for line in ignore_file.readlines())
ignored_lobs = set(ignored_lobs[
ignored_lobs.index('#start_lob_ignore') + 1 :
ignored_lobs.index('#end_lob_ignore')])
for ignored_lob in ignored_lobs:
lob_sha_file = os.path.join('site', ignored_lob + '.sha1')
if not lob_sha_file.startswith('#') and not os.path.exists(lob_sha_file):
error_msg = ('The sha1 file \'{removed_file}\' no longer exists, '
'please remove "{ignored_file}" from site/.gitignore'
.format(removed_file = lob_sha_file, ignored_file = ignored_lob))
error = output_api.PresubmitError(error_msg)
output_status.append(error)
return output_status
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/openharmony-tpc/chromium_docs_website.git
[email protected]:openharmony-tpc/chromium_docs_website.git
openharmony-tpc
chromium_docs_website
chromium_docs_website
master

搜索帮助