xref: /aosp_15_r20/tools/repohooks/rh/__init__.py (revision d68f33bc6fb0cc2476107c2af0573a2f5a63dfc1)
1*d68f33bcSAndroid Build Coastguard Worker# Copyright 2016 The Android Open Source Project
2*d68f33bcSAndroid Build Coastguard Worker#
3*d68f33bcSAndroid Build Coastguard Worker# Licensed under the Apache License, Version 2.0 (the "License");
4*d68f33bcSAndroid Build Coastguard Worker# you may not use this file except in compliance with the License.
5*d68f33bcSAndroid Build Coastguard Worker# You may obtain a copy of the License at
6*d68f33bcSAndroid Build Coastguard Worker#
7*d68f33bcSAndroid Build Coastguard Worker#      http://www.apache.org/licenses/LICENSE-2.0
8*d68f33bcSAndroid Build Coastguard Worker#
9*d68f33bcSAndroid Build Coastguard Worker# Unless required by applicable law or agreed to in writing, software
10*d68f33bcSAndroid Build Coastguard Worker# distributed under the License is distributed on an "AS IS" BASIS,
11*d68f33bcSAndroid Build Coastguard Worker# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12*d68f33bcSAndroid Build Coastguard Worker# See the License for the specific language governing permissions and
13*d68f33bcSAndroid Build Coastguard Worker# limitations under the License.
14*d68f33bcSAndroid Build Coastguard Worker
15*d68f33bcSAndroid Build Coastguard Worker"""Common repohook objects/constants."""
16*d68f33bcSAndroid Build Coastguard Worker
17*d68f33bcSAndroid Build Coastguard Workerfrom typing import NamedTuple
18*d68f33bcSAndroid Build Coastguard Worker
19*d68f33bcSAndroid Build Coastguard Worker
20*d68f33bcSAndroid Build Coastguard Workerclass Project(NamedTuple):
21*d68f33bcSAndroid Build Coastguard Worker    """The git project that we're testing currently."""
22*d68f33bcSAndroid Build Coastguard Worker
23*d68f33bcSAndroid Build Coastguard Worker    # The name of the project.
24*d68f33bcSAndroid Build Coastguard Worker    name: str
25*d68f33bcSAndroid Build Coastguard Worker
26*d68f33bcSAndroid Build Coastguard Worker    # Absolute path to the project checkout.
27*d68f33bcSAndroid Build Coastguard Worker    dir: str
28