REF:https://bugzilla.tianocore.org/show_bug.cgi?id=2570 Add new Azure Pipeline definitions to build and run ArmVirtPkg with: * Ubuntu GCC5 Add PyTool based build of ArmVirtPkg Add extdep for managing the iasl dependency Add ArmVirtPkg.ci.yaml for Core CI Add ReadMe.md for details and instructions Cc: Laszlo Ersek <lersek@redhat.com> Cc: Ard Biesheuvel <ard.biesheuvel@arm.com> Cc: Leif Lindholm <leif@nuviainc.com> Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com> Reviewed-by: Shenglei Zhang <shenglei.zhang@intel.com> Acked-by: Laszlo Ersek <lersek@redhat.com> Acked-by: Ard Biesheuvel <ard.biesheuvel@arm.com> Reviewed-by: Bret Barkelew <bret.barkelew@microsoft.com>
22 lines
616 B
YAML
22 lines
616 B
YAML
## @file
|
|
# Download iasl executable tool from a nuget.org package
|
|
# - package contains different binaries based on host
|
|
# Add the folder with the tool to the path
|
|
#
|
|
# This is only downloaded for scope armvirt thus
|
|
# should have no impact on the asl compiler used by any
|
|
# other platform build
|
|
#
|
|
# Copyright (c) Microsoft Corporation.
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
##
|
|
{
|
|
"id": "iasl-armvirt-1",
|
|
"scope": "armvirt",
|
|
"type": "nuget",
|
|
"name": "iasl",
|
|
"source": "https://api.nuget.org/v3/index.json",
|
|
"version": "20190215.0.0",
|
|
"flags": ["set_path", "host_specific"],
|
|
}
|