mirror of https://github.com/acidanthera/audk.git
CI: Fixed CodeQL for Ext4Pkg and OvmfPkg.
This commit is contained in:
parent
6c5205075a
commit
11bfa6a102
|
@ -51,11 +51,7 @@ jobs:
|
|||
ArchList: "IA32,X64"
|
||||
- Package: "UnitTestFrameworkPkg"
|
||||
ArchList: "IA32,X64"
|
||||
- Package: "OvmfPkgIa32"
|
||||
ArchList: "IA32"
|
||||
- Package: "OvmfPkgX64"
|
||||
ArchList: "X64"
|
||||
- Package: "OvmfPkgIa32X64"
|
||||
- Package: "OvmfPkg"
|
||||
ArchList: "IA32,X64"
|
||||
- Package: "UefiPayloadPkg"
|
||||
ArchList: "IA32,X64"
|
||||
|
|
|
@ -80,6 +80,7 @@ class Settings(CiBuildSettingsManager, UpdateSettingsManager, SetupSettingsManag
|
|||
"DynamicTablesPkg",
|
||||
"EmbeddedPkg",
|
||||
"EmulatorPkg",
|
||||
"Ext4Pkg",
|
||||
"IntelFsp2Pkg",
|
||||
"IntelFsp2WrapperPkg",
|
||||
"MdePkg",
|
||||
|
|
|
@ -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"
|
||||
]
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue