Last change
on this file since 87965 was 85718, checked in by vboxsync, 4 years ago |
Devices/EFI: Merge edk-stable202005 and make it build, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
904 bytes
|
Line | |
---|
1 | ## @file
|
---|
2 | # Azure Pipielines YML file that evalues the patch series in a PR using the
|
---|
3 | # python script BaseTools/Scripts/PatchCheck.py.
|
---|
4 | #
|
---|
5 | # NOTE: This example monitors pull requests against the edk2-ci branch. Most
|
---|
6 | # environments would replace 'edk2-ci' with 'master'.
|
---|
7 | #
|
---|
8 | # Copyright (c) 2019, Intel Corporation. All rights reserved.<BR>
|
---|
9 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
10 | #
|
---|
11 | # https://github.com/tianocore
|
---|
12 | #
|
---|
13 | ##
|
---|
14 |
|
---|
15 | trigger: none
|
---|
16 |
|
---|
17 | pr:
|
---|
18 | - master
|
---|
19 |
|
---|
20 | pool:
|
---|
21 | vmImage: 'ubuntu-latest'
|
---|
22 |
|
---|
23 | steps:
|
---|
24 | - checkout: self
|
---|
25 | clean: true
|
---|
26 |
|
---|
27 | - task: UsePythonVersion@0
|
---|
28 | inputs:
|
---|
29 | versionSpec: '3.7.x'
|
---|
30 | architecture: 'x64'
|
---|
31 |
|
---|
32 | - script: |
|
---|
33 | git fetch origin $(System.PullRequest.TargetBranch):$(System.PullRequest.TargetBranch)
|
---|
34 | python BaseTools/Scripts/PatchCheck.py $(System.PullRequest.TargetBranch)..$(System.PullRequest.SourceCommitId)
|
---|
35 | displayName: 'Use PatchCheck.py to verify patch series in pull request'
|
---|
Note:
See
TracBrowser
for help on using the repository browser.