-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathazure-pipelines.yml
36 lines (33 loc) · 1.03 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
#
# Copyright(c) 2024 Sven Trittler
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License v. 2.0 which is available at
# http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License
# v. 1.0 which is available at
# http://www.eclipse.org/org/documents/edl-v10.php.
#
# SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
trigger: [ '*' ]
pr: [ '*' ]
variables:
BUILD_PIPELINE_ID: "$(System.DefinitionId)"
BUILD_ID: "$(Build.BuildId)"
${{ if startsWith(variables['Build.SourceBranch'], 'refs/heads/') }}:
GIT_BRANCH: "$(Build.SourceBranch)"
${{ if startsWith(variables['Build.SourceBranch'], 'refs/pull/') }}:
GIT_BRANCH: "$(System.PullRequest.SourceBranch)"
jobs:
- job: BuildInsight
pool:
vmImage: $(image)
strategy:
matrix:
'Ubuntu_20.04_LTS_x64':
image: ubuntu-20.04
'macOS_13_x64':
image: macOS-13
'Windows_Server_2019_x64':
image: windows-2019
steps:
- template: /.azure/templates/build-insight.yml