Commit Graph

14 Commits

Author SHA1 Message Date
Sindhura Grandhi 83592910de Enable Azure Pipeline build for ADLS
This patch enabled auto build for ADLS Azure Pipeline.

Signed-off-by: Sindhura Grandhi <sindhura.grandhi@intel.com>
2022-04-15 09:50:15 -07:00
Maurice Ma 42bb191c89 Upgrade python version for Azure Pipelines
This patch updated python version to be 3.8.x for Azure Pipelines.
Without this change, the Azure Pipeline build will fail.

Signed-off-by: Maurice Ma <maurice.ma@intel.com>
2022-02-07 12:51:20 -08:00
James Gutbub 4b82461065 Update IASL to version 20190509
For Azure and toolchain check we
can update to using IASL version
20190509 since some of the newer
SBL platforms require a newer
IASL version.

Signed-off-by: James Gutbub <james.gutbub@intel.com>
2022-01-05 12:01:15 -08:00
Mike Crowe 990e3e81e6 Use LF line endings in the repository
Convert the line endings stored for all text files in the repository to
LF. The majority previously used DOS-style CRLF line endings. Add a
.gitattributes file to enforce this and treat certain extensions as
never being text files.

Update PatchCheck.py to insist on LF line endings rather than CRLF.
However, its other checks fail on this commit due to lots of
pre-existing complaints that it only notices because the line endings
have changed.

Silicon/QemuSocPkg/FspBin/Patches/0001-Build-QEMU-FSP-2.0-binaries.patch
needs to be treated as binary since it contains a mixture of line
endings.

This change has implications depending on the client platform you are
using the repository from:

* Windows

The usual configuration for Git on Windows means that text files will
be checked out to the work tree with DOS-style CRLF line endings. If
that's not the case then you can configure Git to do so for the entire
machine with:

 git config --global core.autocrlf true

or for just the repository with:

 git config core.autocrlf true

Line endings will be normalised to LF when they are committed to the
repository. If you commit a text file with only LF line endings then it
will be converted to CRLF line endings in your work tree.

* Linux, MacOS and other Unices

The usual configuration for Git on such platforms is to check files out
of the repository with LF line endings. This is probably the right thing
for you. In the unlikely even that you are using Git on Unix but editing
or compiling on Windows for some reason then you may need to tweak your
configuration to force the use of CRLF line endings as described above.

* General

For more information see
https://docs.github.com/en/get-started/getting-started-with-git/configuring-git-to-handle-line-endings .

Fixes: https://github.com/slimbootloader/slimbootloader/issues/1400
Signed-off-by: Mike Crowe <mac@mcrowe.com>
2021-11-10 12:46:42 -08:00
jinjhuli 923d27ac81 Enable Azure Pipeline build for EHL
This patch enabled auto build for EHL Azure Pipelines.

Signed-off-by: jinjhuli <jin.jhu.lim@intel.com>
2021-04-01 11:03:56 -07:00
Maurice Ma eb8a5a777d Fix Azure pipeline build issue
ACPI package has been upgraded to acpica-tools_20200925-1.2_amd64
in order to fix the build issue.  The old ACPICA tool URL is not
valid anymore.

Signed-off-by: Maurice Ma <maurice.ma@intel.com>
2021-02-23 10:00:08 -08:00
Maurice Ma 06d3c531c9 Enable Azure Pipelines with Ubuntu-20.04
This patch moves the Linux build environment into latest Ubuntu
20.04 and updated to use latest ACPICA. All GCC build now is
enabled.

Signed-off-by: Maurice Ma <maurice.ma@intel.com>
2021-01-24 19:47:54 -08:00
Maurice Ma b520f9561c Enable Azure Pipeline build for TGL
This patch enabled auto build for TGL Azure Pipelines.
Only Windows build is enabled. GCC build has IASL issue.

Signed-off-by: Maurice Ma <maurice.ma@intel.com>
2021-01-22 10:01:37 -08:00
James Gutbub 6a1ad8f5e3 Make Python lz4 module optional
To avoid any dependency on non-standard python modules
it is preferred to make the binary Lz4 compression the
default flow and try the python module as a backup. Also
recommend to use a known working version of the lz4
python module, 3.1.1.

Signed-off-by: James Gutbub <james.gutbub@intel.com>
2021-01-04 15:05:50 -08:00
James Gutbub ab49d6c9a0 Use Python lz4 module for LZ4
To make SBL scripts/tools more OS-agnostic the
lz4 (de)compression module can be used instead of
relying on the BaseTools LZ4 package/executable.

Need to update the azure pipeline to install
the python lz4 module before running the builds.

TEST=Confirmed that the python lz4.block.compress
     routine is compatible with Lz4DecompressLib
     during SBL runtime to decompress LZ4 binaries.

Signed-off-by: James Gutbub <james.gutbub@intel.com>
2020-12-22 13:19:52 -08:00
Aiden Park 0b7c653cfd Allow PatchCheck only in PR condition
The master build trigger does not have PullRequest variable.
This will allow PatchCheck to be run only in PR condition.

Signed-off-by: Aiden Park <aiden.park@intel.com>
2020-12-02 07:41:46 -08:00
Maurice Ma 8be5159c25
Enable PatchCheck script for Azure Pipelines (#915)
The current PatchCheck does not work properly in Azure Pipelines.
Synced up with EDK2 to update script to address this issue.

Signed-off-by: Maurice Ma <maurice.ma@intel.com>
2020-12-01 22:37:11 -08:00
Maurice Ma 7ec367c38f Enable Windows build target for Azure Pipelines
This patch enabled Windows build targes for APL, CFL, CML, CMLv
and QEMU.

Signed-off-by: Maurice Ma <maurice.ma@intel.com>
2020-12-01 16:38:38 -08:00
Maurice Ma 589238aeed Set up initial CI with Azure Pipelines
Migrated to Azure Pipelines for SBL CI to align with EDK2 project.
This is an initial commit to enable basic check. Currently it will
verify patch format and QEMU GCC build and test.

Signed-off-by: Maurice Ma <maurice.ma@intel.com>
2020-12-01 12:38:53 -08:00