-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathazure-pipelines.yml
More file actions
37 lines (34 loc) · 1.06 KB
/
Copy pathazure-pipelines.yml
File metadata and controls
37 lines (34 loc) · 1.06 KB
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
#
# 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)"
CYCLONE_CLONE_BRANCH: "master"
jobs:
- job: BuildInsight
pool:
vmImage: $(image)
strategy:
matrix:
'Ubuntu_22.04_LTS_x64':
image: ubuntu-22.04
'macOS_15_x64':
image: macOS-15
'Windows_Server_2022_x64':
image: windows-2022
steps:
- template: /.azure/templates/build-insight.yml