mirror of
https://github.com/tianocore/edk2
synced 2026-08-27 00:23:19 -04:00
LOONGARCH64 is not currently supported on CLANGDWARF. Continuous-integration-options: PatchCheck.ignore-multi-package Signed-off-by: Mike Beaton <mjsbeaton@gmail.com>
32 lines
884 B
YAML
32 lines
884 B
YAML
## @file
|
|
# Azure Pipeline build file for a build using Ubuntu and CLANGDWARF
|
|
#
|
|
# Copyright (c) Microsoft Corporation.
|
|
# Copyright (c) 2020, Hewlett Packard Enterprise Development LP. All rights reserved.<BR>
|
|
# Copyright (c) 2022, Loongson Technology Corporation Limited. All rights reserved.<BR>
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
##
|
|
trigger: none
|
|
|
|
schedules:
|
|
- cron: "0 7 * * *"
|
|
displayName: Daily Build
|
|
branches:
|
|
include:
|
|
- master
|
|
- stable/*
|
|
always: true
|
|
|
|
pr: none
|
|
|
|
variables:
|
|
- template: templates/defaults.yml
|
|
|
|
jobs:
|
|
- template: templates/pr-gate-build-job.yml
|
|
parameters:
|
|
tool_chain_tag: CLANGDWARF
|
|
vm_image: ${{ variables.default_linux_vm }}
|
|
container: ${{ variables.default_linux_container }}
|
|
arch_list: "IA32,X64,AARCH64,RISCV64"
|
|
usePythonVersion: '' # use Python from the container image
|