diff options
Diffstat (limited to 'src/VBox/Devices/EFI/Firmware/.azurepipelines/Ubuntu-GCC5.yml')
-rw-r--r-- | src/VBox/Devices/EFI/Firmware/.azurepipelines/Ubuntu-GCC5.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/VBox/Devices/EFI/Firmware/.azurepipelines/Ubuntu-GCC5.yml b/src/VBox/Devices/EFI/Firmware/.azurepipelines/Ubuntu-GCC5.yml new file mode 100644 index 00000000..e50cdcf3 --- /dev/null +++ b/src/VBox/Devices/EFI/Firmware/.azurepipelines/Ubuntu-GCC5.yml @@ -0,0 +1,21 @@ +## @file +# Azure Pipeline build file for a build using ubuntu and GCC5 +# +# Copyright (c) Microsoft Corporation. +# Copyright (c) 2020, Hewlett Packard Enterprise Development LP. All rights reserved.<BR> +# SPDX-License-Identifier: BSD-2-Clause-Patent +## +trigger: +- master +- stable/* +pr: +- master +- stable/* + +jobs: +- template: templates/pr-gate-build-job.yml + parameters: + tool_chain_tag: 'GCC5' + vm_image: 'ubuntu-latest' + arch_list: "IA32,X64,ARM,AARCH64,RISCV64" + |