-
Notifications
You must be signed in to change notification settings - Fork 271
/
azure-pipelines.yml
78 lines (74 loc) · 2.19 KB
/
azure-pipelines.yml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# This Yaml Document has been converted by ESAI Yaml Pipeline Conversion Tool.
# This pipeline will be extended to the OneESPT template
# The Task 'PublishPipelineArtifact@1' has been converted to an output named '' in the templateContext section.
trigger:
- master
- features/*
- releases/*
variables:
- group: npm-tokens
- name: nodeVersion
value: '16.13.0'
resources:
repositories:
- repository: 1ESPipelineTemplates
type: git
name: 1ESPipelineTemplates/1ESPipelineTemplates
ref: refs/tags/release
extends:
template: v1/1ES.Official.PipelineTemplate.yml@1ESPipelineTemplates
parameters:
featureFlags:
autoBaseline: false
sdl:
baseline:
baselineSet: default
baselineFile: $(Build.SourcesDirectory)/.gdn/.gdnbaselines
sourceAnalysisPool:
name: 1ES-ABTT-Shared-Pool
image: abtt-windows-2022
os: windows
customBuildTags:
- ES365AIMigrationTooling
stages:
- stage: stage
jobs:
#################################################
- job: windows
#################################################
pool:
name: 1ES-ABTT-Shared-Pool
image: abtt-windows-2022
os: windows
steps:
- template: /azure-pipelines-steps-node.yml@self
parameters:
os: Windows_NT
#################################################
- job: linux
#################################################
pool:
name: 1ES-ABTT-Shared-Pool
image: abtt-ubuntu-2204
os: linux
templateContext:
outputs:
- output: pipelineArtifact
targetPath: 'node/_build'
artifactType: 'pipeline'
artifactName: 'npm-package'
steps:
- template: /azure-pipelines-steps-node.yml@self
parameters:
os: Linux
#################################################
- job: macOS
#################################################
pool:
name: Azure Pipelines
image: macOS-latest
os: macOS
steps:
- template: /azure-pipelines-steps-node.yml@self
parameters:
os: Darwin