MdePkg: Add comment to MdePkg and ArmPkg #106
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## @file | |
# Run PatchCheck on all commits in a pull request | |
# | |
# Copyright (c) 2024, Intel Corporation. All rights reserved.<BR> | |
# SPDX-License-Identifier: BSD-2-Clause-Patent | |
## | |
name: PatchCheck | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled] | |
branches: | |
- CiEnabled | |
env: | |
RunPatchCheck: True | |
PatchCheckOptions: '' | |
jobs: | |
patchcheck: | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
steps: | |
- name: IsLabel | |
if: ${{ contains(fromJSON('["labeled", "unlabeled"]'), github.event.action) && (github.event.label.name != 'ignore-multi-package') }} | |
run: echo "RunPatchCheck=False" >> $GITHUB_ENV | |
- name: IsIgnoreMultiPackage | |
if: ${{ env.RunPatchCheck == 'True' && contains(github.event.pull_request.labels.*.name, 'ignore-multi-package')}} | |
run: echo "PatchCheckOptions=--ignore-multi-package" >> $GITHUB_ENV | |
- name: Fetch Depth | |
if: ${{ env.RunPatchCheck == 'True' }} | |
run: echo "FetchDepth=$((${{ github.event.pull_request.commits }} + 1))" >> $GITHUB_ENV | |
- name: Fetch PR | |
if: ${{ env.RunPatchCheck == 'True' }} | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
fetch-depth: ${{ env.FetchDepth }} | |
sparse-checkout: | | |
pip-requirements.txt | |
BaseTools/Scripts/PatchCheck.py | |
- name: Checkout Base | |
if: ${{ env.RunPatchCheck == 'True' }} | |
run: git checkout ${{ github.event.pull_request.base.sha }} | |
- name: Install Python | |
if: ${{ env.RunPatchCheck == 'True' }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Cache Python Dependencies | |
id: cache-python-dependencies | |
uses: actions/cache@v4 | |
with: | |
path: ${{ env.pythonLocation }} | |
key: ${{ env.pythonLocation }}-${{ hashFiles('pip-requirements.txt') }} | |
- name: Install Python Dependencies | |
if: ${{ env.RunPatchCheck == 'True' && steps.cache-python-dependencies.outputs.cache-hit != 'true'}} | |
run: pip install -r pip-requirements.txt | |
- name: PatchCheck | |
if: ${{ env.RunPatchCheck == 'True' }} | |
run: python BaseTools/Scripts/PatchCheck.py ${{ env.PatchCheckOptions }} ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }}..${{ github.event.pull_request.head.sha }} |