]> git.proxmox.com Git - mirror_edk2.git/blame - .pytool/Readme.md
DynamicTablesPkg: Add EDK2 Core CI support
[mirror_edk2.git] / .pytool / Readme.md
CommitLineData
4eb2baba
SB
1# Edk2 Continuous Integration\r
2\r
3## Basic Status\r
4\r
4403bbd7
BB
5| Package | Windows VS2019 (IA32/X64)| Ubuntu GCC (IA32/X64/ARM/AARCH64) | Known Issues |\r
6| :---- | :----- | :---- | :--- |\r
7| ArmPkg |\r
8| ArmPlatformPkg |\r
9| ArmVirtPkg | SEE PACKAGE README | SEE PACKAGE README |\r
10| CryptoPkg | :heavy_check_mark: | :heavy_check_mark: | Spell checking in audit mode\r
11| DynamicTablesPkg |\r
12| EmbeddedPkg |\r
13| EmulatorPkg | SEE PACKAGE README | SEE PACKAGE README | Spell checking in audit mode\r
14| FatPkg | :heavy_check_mark: | :heavy_check_mark: |\r
15| FmpDevicePkg | :heavy_check_mark: | :heavy_check_mark: |\r
16| IntelFsp2Pkg |\r
17| IntelFsp2WrapperPkg |\r
18| MdeModulePkg | :heavy_check_mark: | :heavy_check_mark: | DxeIpl dependency on ArmPkg, Depends on StandaloneMmPkg, Spell checking in audit mode\r
19| MdePkg | :heavy_check_mark: | :heavy_check_mark: | Spell checking in audit mode\r
20| NetworkPkg | :heavy_check_mark: | :heavy_check_mark: | Spell checking in audit mode\r
21| OvmfPkg | SEE PACKAGE README | SEE PACKAGE README | Spell checking in audit mode\r
22| PcAtChipsetPkg | :heavy_check_mark: | :heavy_check_mark: |\r
23| SecurityPkg | :heavy_check_mark: | :heavy_check_mark: | Spell checking in audit mode\r
24| ShellPkg | :heavy_check_mark: | :heavy_check_mark: | Spell checking in audit mode, 3 modules are not being built by DSC\r
25| SignedCapsulePkg |\r
26| SourceLevelDebugPkg |\r
27| StandaloneMmPkg |\r
28| UefiCpuPkg | :heavy_check_mark: | :heavy_check_mark: | Spell checking in audit mode, 2 binary modules not being built by DSC\r
29| UefiPayloadPkg |\r
30| UnitTestFrameworkPkg | :heavy_check_mark: | :heavy_check_mark: |\r
4eb2baba
SB
31\r
32For more detailed status look at the test results of the latest CI run on the\r
33repo readme.\r
34\r
35## Background\r
36\r
37This Continuous integration and testing infrastructure leverages the TianoCore EDKII Tools PIP modules:\r
38[library](https://pypi.org/project/edk2-pytool-library/) and\r
39[extensions](https://pypi.org/project/edk2-pytool-extensions/) (with repos\r
40located [here](https://github.com/tianocore/edk2-pytool-library) and\r
41[here](https://github.com/tianocore/edk2-pytool-extensions)).\r
42\r
43The primary execution flows can be found in the\r
44`.azurepipelines/Windows-VS2019.yml` and `.azurepipelines/Ubuntu-GCC5.yml`\r
45files. These YAML files are consumed by the Azure Dev Ops Build Pipeline and\r
46dictate what server resources should be used, how they should be configured, and\r
47what processes should be run on them. An overview of this schema can be found\r
48[here](https://docs.microsoft.com/en-us/azure/devops/pipelines/yaml-schema?view=azure-devops&tabs=schema).\r
49\r
50Inspection of these files reveals the EDKII Tools commands that make up the\r
51primary processes for the CI build: 'stuart_setup', 'stuart_update', and\r
52'stuart_ci_build'. These commands come from the EDKII Tools PIP modules and are\r
53configured as described below. More documentation on the tools can be\r
54found [here](https://github.com/tianocore/edk2-pytool-extensions/blob/master/docs/using.md)\r
55and [here](https://github.com/tianocore/edk2-pytool-extensions/blob/master/docs/features/feature_invocables.md).\r
56\r
57## Configuration\r
58\r
59Configuration of the CI process consists of (in order of precedence):\r
60\r
61* command-line arguments passed in via the Pipeline YAML\r
62* a per-package configuration file (e.g. `<package-name>.ci.yaml`) that is\r
63 detected by the CI system in EDKII Tools.\r
64* a global configuration Python module (e.g. `CISetting.py`) passed in via the\r
65 command-line\r
66\r
67The global configuration file is described in\r
68[this readme](https://github.com/tianocore/edk2-pytool-extensions/blob/master/docs/usability/using_settings_manager.md)\r
69from the EDKII Tools documentation. This configuration is written as a Python\r
70module so that decisions can be made dynamically based on command line\r
71parameters and codebase state.\r
72\r
73The per-package configuration file can override most settings in the global\r
74configuration file, but is not dynamic. This file can be used to skip or\r
75customize tests that may be incompatible with a specific package. Each test generally requires\r
76per package configuration which comes from this file.\r
77\r
78## Running CI locally\r
79\r
80The EDKII Tools environment (and by extension the ci) is designed to support\r
0358c0bf 81easily and consistently running locally and in a cloud ci environment. To do\r
4eb2baba
SB
82that a few steps should be followed. Details of EDKII Tools can be found in the\r
83[docs folder here](https://github.com/tianocore/edk2-pytool-extensions/tree/master/docs)\r
84\r
85### Prerequisets\r
86\r
871. A supported toolchain (others might work but this is what is tested and validated)\r
88 * Windows 10:\r
89 * VS 2017 or VS 2019\r
90 * Windows SDK (for rc)\r
91 * Windows WDK (for capsules)\r
4403bbd7 92 * Ubuntu 18.04 or Fedora\r
4eb2baba
SB
93 * GCC5\r
94 * Easy to add more but this is the current state\r
952. Python 3.7.x or newer on path\r
963. git on path\r
974. Recommended to setup and activate a python virtual environment\r
985. Install the requirements `pip install --upgrade pip-requirements.txt`\r
99\r
100### Running CI\r
101\r
1021. clone your edk2 repo\r
1032. Activate your python virtual environment in cmd window\r
1043. Get code dependencies (done only when submodules change)\r
105 * `stuart_setup -c .pytool/CISettings.py TOOL_CHAIN_TAG=<your tag here>`\r
1064. Update other dependencies (done more often)\r
107 * `stuart_update -c .pytool/CISettings.py TOOL_CHAIN_TAG=<your tag here>`\r
1085. Run CI build (--help will give you options)\r
109 * `stuart_ci_build -c .pytool/CISettings.py TOOL_CHAIN_TAG=<your tag here>`\r
110 * -p <pkg1,pkg2,pkg3> : To build only certain packages use a CSV list\r
111 * -a <arch1,arch2,arch3>: To run only certain architectures use a CSV list\r
112 * -t <target1,target2>: To run only tests related to certain targets use a\r
113 CSV list\r
114 * By default all tests are opted in. Then given a package.ci.yaml file those\r
115 tests can be configured for a package. Finally setting the check to the\r
116 value `skip` will skip that plugin. Examples:\r
117 * `CompilerPlugin=skip` skip the build test\r
118 * `GuidCheck=skip` skip the Guid check\r
119 * `SpellCheck=skip` skip the spell checker\r
120 * etc\r
1216. Detailed reports and logs per package are captured in the `Build` directory\r
122\r
123## Current PyTool Test Capabilities\r
124\r
125All CI tests are instances of EDKII Tools plugins. Documentation on the plugin\r
126system can be found [here](https://github.com/tianocore/edk2-pytool-extensions/blob/master/docs/usability/using_plugin_manager.md)\r
127and [here](https://github.com/tianocore/edk2-pytool-extensions/blob/master/docs/features/feature_plugin_manager.md).\r
128Upon invocation, each plugin will be passed the path to the current package\r
129under test and a dictionary containing its targeted configuration, as assembled\r
130from the command line, per-package configuration, and global configuration.\r
131\r
132Note: CI plugins are considered unique from build plugins and helper plugins,\r
133even though some CI plugins may execute steps of a build.\r
134\r
135In the example, these plugins live alongside the code under test (in the\r
136`.pytool/Plugin` directory), but may be moved to the 'edk2-test' repo if that\r
137location makes more sense for the community.\r
138\r
139### Module Inclusion Test - DscCompleteCheck\r
140\r
4403bbd7
BB
141This scans all INF files from a package and confirms they are\r
142listed in the package level DSC file. The test considers it an error if any INF\r
143does not appear in the `Components` section of the package-level DSC (indicating\r
144that it would not be built if the package were built). This is critical because\r
145much of the CI infrastructure assumes that all modules will be listed in the DSC\r
146and compiled.\r
147\r
148This test will ignore INFs in the following cases:\r
149\r
1501. When `MODULE_TYPE` = `HOST_APPLICATION`\r
1512. When a Library instance **only** supports the `HOST_APPLICATION` environment\r
152\r
153### Host Module Inclusion Test - HostUnitTestDscCompleteCheck\r
154\r
155This test scans all INF files from a package for those related to host\r
156based unit tests and confirms they are listed in the unit test DSC file for the package.\r
157The test considers it an error if any INF meeting the requirements does not appear\r
158in the `Components` section of the unit test DSC. This is critical because\r
159much of the CI infrastructure assumes that modules will be listed in the DSC\r
160and compiled.\r
161\r
162This test will only require INFs in the following cases:\r
163\r
1641. When `MODULE_TYPE` = `HOST_APPLICATION`\r
1652. When a Library instance explicitly supports the `HOST_APPLICATION` environment\r
4eb2baba
SB
166\r
167### Code Compilation Test - CompilerPlugin\r
168\r
169Once the Module Inclusion Test has verified that all modules would be built if\r
170all package-level DSCs were built, the Code Compilation Test simply runs through\r
171and builds every package-level DSC on every toolchain and for every architecture\r
172that is supported. Any module that fails to build is considered an error.\r
173\r
4403bbd7
BB
174### Host Unit Test Compilation and Run Test - HostUnitTestCompilerPlugin\r
175\r
176A test that compiles the dsc for host based unit test apps.\r
177On Windows this will also enable a build plugin to execute that will run the unit tests and verify the results.\r
178\r
179These tools will be invoked on any CI\r
180pass that includes the NOOPT target. In order for these tools to do their job,\r
181the package and tests must be configured in a particular way...\r
182\r
183#### Including Host-Based Tests in the Package YAML\r
184\r
185For example, looking at the `MdeModulePkg.ci.yaml` config file, there are two\r
186config options that control HostBased test behavior:\r
187\r
188```json\r
189 ## options defined .pytool/Plugin/HostUnitTestCompilerPlugin\r
190 "HostUnitTestCompilerPlugin": {\r
191 "DscPath": "Test/MdeModulePkgHostTest.dsc"\r
192 },\r
193```\r
194\r
195This option tell the test builder to run. The test builder needs to know which\r
196modules in this package are host-based tests, so that DSC path is provided.\r
197\r
198#### Configuring the HostBased DSC\r
199\r
200The HostBased DSC for `MdeModulePkg` is located at\r
201`MdeModulePkg/Test/MdeModulePkgHostTest.dsc`.\r
202\r
203To add automated host-based unit test building to a new package, create a\r
204similar DSC. The new DSC should make sure to have the `NOOPT` BUILD_TARGET\r
205and should include the line:\r
206\r
207```\r
208!include UnitTestFrameworkPkg/UnitTestFrameworkPkgHost.dsc.inc\r
209```\r
210\r
211All of the modules that are included in the `Components` section of this\r
212DSC should be of type HOST_APPLICATION.\r
213\r
4eb2baba
SB
214### GUID Uniqueness Test - GuidCheck\r
215\r
216This test works on the collection of all packages rather than an individual\r
217package. It looks at all FILE_GUIDs and GUIDs declared in DEC files and ensures\r
218that they are unique for the codebase. This prevents, for example, accidental\r
219duplication of GUIDs when using an existing INF as a template for a new module.\r
220\r
221### Cross-Package Dependency Test - DependencyCheck\r
222\r
223This test compares the list of all packages used in INFs files for a given\r
224package against a list of "allowed dependencies" in plugin configuration for\r
225that package. Any module that depends on a disallowed package will cause a test\r
226failure.\r
227\r
228### Library Declaration Test - LibraryClassCheck\r
229\r
230This test scans at all library header files found in the `Library` folders in\r
231all of the package's declared include directories and ensures that all files\r
232have a matching LibraryClass declaration in the DEC file for the package. Any\r
233missing declarations will cause a failure.\r
234\r
235### Invalid Character Test - CharEncodingCheck\r
236\r
237This test scans all files in a package to make sure that there are no invalid\r
238Unicode characters that may cause build errors in some character\r
239sets/localizations.\r
240\r
241### Spell Checking - cspell\r
242\r
243This test runs a spell checker on all files within the package. This is done\r
244using the NodeJs cspell tool. For details check `.pytool/Plugin/SpellCheck`.\r
245For this plugin to run during ci you must install nodejs and cspell and have\r
246both available to the command line when running your CI.\r
247\r
248Install\r
249\r
250* Install nodejs from https://nodejs.org/en/\r
251* Install cspell\r
252 1. Open cmd prompt with access to node and npm\r
253 2. Run `npm install -g cspell`\r
254\r
255 More cspell info: https://github.com/streetsidesoftware/cspell\r
256\r
257## PyTool Scopes\r
258\r
259Scopes are how the PyTool ext_dep, path_env, and plugins are activated. Meaning\r
260that if an invocable process has a scope active then those ext_dep and path_env\r
261will be active. To allow easy integration of PyTools capabilities there are a\r
262few standard scopes.\r
263\r
264| Scope | Invocable | Description |\r
265| :---- | :----- | :---- |\r
266| global | edk2_invocable++ - should be base_abstract_invocable | Running an invocables |\r
267| global-win | edk2_invocable++ | Running on Microsoft Windows |\r
268| global-nix | edk2_invocable++ | Running on Linux based OS |\r
269| edk2-build | | This indicates that an invocable is building EDK2 based UEFI code |\r
270| cibuild | set in .pytool/CISettings.py | Suggested target for edk2 continuous integration builds. Tools used for CiBuilds can use this scope. Example: asl compiler |\r
4403bbd7
BB
271| host-based-test | set in .pytool/CISettings.py | Turns on the host based tests and plugin |\r
272| host-test-win | set in .pytool/CISettings.py | Enables the host based test runner for Windows |\r
4eb2baba
SB
273\r
274## Future investments\r
275\r
276* PatchCheck tests as plugins\r
277* MacOS/xcode support\r
278* Clang/LLVM support\r
279* Visual Studio AARCH64 and ARM support\r
280* BaseTools C tools CI/PR and binary release process\r
281* BaseTools Python tools CI/PR process\r
4eb2baba 282* Extensible private/closed source platform reporting\r
4eb2baba
SB
283* UEFI SCTs\r
284* Other automation\r