Files
vscode-cpptools/Build/lldb-mi/lldb-mi.yml
T
Andrew Wang f3932b797b Update lldb-mi.yml to support building ARM64 (#8997)
* Update lldb-mi build

Hardcode llvm/lldb-mi commits to match the ones in cgmanifest.
Added parameters to support building for different arch and on
different machines.

* Refactor
2022-03-09 12:18:49 -08:00

23 lines
480 B
YAML

parameters:
- name: Build_Type
displayName: Build Type
type: string
default: Release
stages:
- stage: Build
dependsOn: []
jobs:
- template: lldb-mi.template.yml
parameters:
llvm_build_type: ${{ parameters.Build_Type }}
llvm_arch: x86_64
- template: lldb-mi.template.yml
parameters:
llvm_build_type: ${{ parameters.Build_Type }}
llvm_arch: arm64
- stage: Signing
dependsOn: ["Build"]
jobs:
- template: lldb-mi-sign.template.yml