-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Fixed CodeQL for Ext4Pkg and OvmfPkg.
- Loading branch information
Mikhail Krichanov
committed
Dec 28, 2023
1 parent
6c52050
commit 11bfa6a
Showing
3 changed files
with
67 additions
and
5 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
## @file | ||
# CI configuration for Ext4Pkg | ||
# | ||
# Copyright (c) Microsoft Corporation | ||
# Copyright (c) 2020, Intel Corporation. All rights reserved.<BR> | ||
# SPDX-License-Identifier: BSD-2-Clause-Patent | ||
## | ||
{ | ||
"LicenseCheck": { | ||
"IgnoreFiles": [] | ||
}, | ||
"EccCheck": { | ||
## Exception sample looks like below: | ||
## "ExceptionList": [ | ||
## "<ErrorID>", "<KeyWord>" | ||
## ] | ||
"ExceptionList": [ | ||
], | ||
## Both file path and directory path are accepted. | ||
"IgnoreFiles": [ | ||
] | ||
}, | ||
"CompilerPlugin": { | ||
"DscPath": "Ext4Pkg.dsc" | ||
}, | ||
"CharEncodingCheck": { | ||
"IgnoreFiles": [] | ||
}, | ||
"DependencyCheck": { | ||
"AcceptableDependencies": [ | ||
"MdePkg/MdePkg.dec", | ||
"MdeModulePkg/MdeModulePkg.dec", | ||
], | ||
# For host based unit tests | ||
"AcceptableDependencies-HOST_APPLICATION":[], | ||
# For UEFI shell based apps | ||
"AcceptableDependencies-UEFI_APPLICATION":[], | ||
"IgnoreInf": [] | ||
}, | ||
"DscCompleteCheck": { | ||
"IgnoreInf": [], | ||
"DscPath": "Ext4Pkg.dsc" | ||
}, | ||
"GuidCheck": { | ||
"IgnoreGuidName": [], | ||
"IgnoreGuidValue": [], | ||
"IgnoreFoldersAndFiles": [] | ||
}, | ||
"LibraryClassCheck": { | ||
"IgnoreHeaderFile": [] | ||
}, | ||
"SpellCheck": { | ||
"ExtendWords": [ | ||
"ELTORITO", | ||
"FHAND", | ||
"IFILE", | ||
"OFILE", | ||
"FDISKed", | ||
"Lfnbuffer", | ||
"FFFFFFFFL", | ||
"CDVOL", | ||
"DMDEPKG" | ||
] | ||
} | ||
} |