2019-10-08 05:34:34 +02:00
|
|
|
## @file
|
|
|
|
# Azure Pipeline build file for a build using ubuntu and GCC5
|
|
|
|
#
|
|
|
|
# Copyright (c) Microsoft Corporation.
|
2020-04-03 07:49:35 +02:00
|
|
|
# Copyright (c) 2020, Hewlett Packard Enterprise Development LP. All rights reserved.<BR>
|
2021-11-15 10:59:03 +01:00
|
|
|
# Copyright (c) 2022, Loongson Technology Corporation Limited. All rights reserved.<BR>
|
2019-10-08 05:34:34 +02:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
##
|
|
|
|
trigger:
|
|
|
|
- master
|
2020-12-19 03:16:29 +01:00
|
|
|
- stable/*
|
2019-10-08 05:34:34 +02:00
|
|
|
pr:
|
|
|
|
- master
|
2020-12-19 03:16:29 +01:00
|
|
|
- stable/*
|
2019-10-08 05:34:34 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
- template: templates/pr-gate-build-job.yml
|
|
|
|
parameters:
|
|
|
|
tool_chain_tag: 'GCC5'
|
|
|
|
vm_image: 'ubuntu-latest'
|
2021-11-15 10:59:03 +01:00
|
|
|
arch_list: "IA32,X64,ARM,AARCH64,RISCV64,LOONGARCH64"
|
2022-11-08 09:38:49 +01:00
|
|
|
extra_install_step:
|
|
|
|
- bash: sudo apt-get install -y lcov
|
|
|
|
displayName: Install Code Coverage Tools
|
|
|
|
condition: and(gt(variables.pkg_count, 0), succeeded())
|