CI: Fixed CodeQL for Ext4Pkg and OvmfPkg.

This commit is contained in:
Mikhail Krichanov 2023-12-28 16:16:50 +03:00
parent 6c5205075a
commit 11bfa6a102
3 changed files with 67 additions and 5 deletions

View File

@ -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"

View File

@ -80,6 +80,7 @@ class Settings(CiBuildSettingsManager, UpdateSettingsManager, SetupSettingsManag
"DynamicTablesPkg",
"EmbeddedPkg",
"EmulatorPkg",
"Ext4Pkg",
"IntelFsp2Pkg",
"IntelFsp2WrapperPkg",
"MdePkg",

65
Ext4Pkg/Ext4Pkg.ci.yaml Normal file
View File

@ -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"
]
}
}