-
Notifications
You must be signed in to change notification settings - Fork 36
/
azure-pipelines.yml
42 lines (36 loc) · 1.21 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
variables:
BPT_MATRIX_SPLIT_BY_BUILD_TYPES: "true"
BPT_REQUIRE_MORE_DISK_SPACE: "true"
CONAN_BUILD_POLICY: "missing"
CONAN_REMOTES: "https://bincrafters.jfrog.io/artifactory/api/conan/public-conan@bincrafters"
CONAN_UPLOAD: "https://bincrafters.jfrog.io/artifactory/api/conan/conan"
# the pull request trigger is implicit
trigger:
branches:
include:
- main
paths:
include:
- recipes/*
- azure-pipelines.yml
# bincrafters-conventions:azp-version:2
# You can add custom environment variables above the version tag
# Do not modify the tag or anything below the tag
# This script gets automatically updated
# Example
# variables:
# BPT_MATRIX_SPLIT_BY_BUILD_TYPES: "true" # Possible values "false", "true", default: false
# BPT_REQUIRE_MORE_DISK_SPACE: "true" # Possible values "false", "true", default: false
# You can set any environment variable understood by Conan and Conan Package Tools
resources:
repositories:
- repository: templates
type: github
name: bincrafters/templates
endpoint: github
extends:
template: .ci/azure.yml@templates
parameters:
conanLoginUsername: $(CONAN_LOGIN_USERNAME)
conanPassword: $(CONAN_PASSWORD)
bptConfigFileVersion: 2