forked from microsoft/CLRInstrumentationEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsigned.yaml
32 lines (27 loc) · 891 Bytes
/
signed.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
# Build Pipeline: Signed build
# Validates:
# - binaries can be built for all platforms and Release configuration
# - packages can be built for all platforms and Release configuration
name: $(date:yyyyMMdd)$(rev:rr)
variables:
TeamName: ClrInstrumentationEngine
stages:
- stage: Build
jobs:
# Binaries (Windows & Linux)
- template: ../jobs/binaries.yaml
parameters:
IndexSources: true
SignType: $(SignType) # NOTE this string won't be replaced until runtime
Configuration: Release
IsMicroBuildInternal: true
- stage: Package
jobs:
# Packages (Windows & Linux)
- template: ../jobs/packages.yaml
parameters:
SignType: $(SignType) # NOTE this string won't be replaced until runtime
Configuration: Release
IsMicroBuildInternal: true