-
Notifications
You must be signed in to change notification settings - Fork 2k
/
Copy pathci.yml
52 lines (48 loc) · 1.54 KB
/
ci.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
# NOTE: Please refer to https://aka.ms/azsdk/engsys/ci-yaml before editing this file.
trigger:
branches:
include:
- main
- hotfix/*
- release/*
paths:
include:
- sdk/vision/ci.yml
- sdk/vision/azure-ai-vision-imageanalysis/
exclude:
- sdk/vision/pom.xml
- sdk/vision/azure-ai-vision-imageanalysis/pom.xml
pr:
branches:
include:
- main
- feature/*
- hotfix/*
- release/*
paths:
include:
- sdk/vision/ci.yml
- sdk/vision/azure-ai-vision-imageanalysis/
exclude:
- sdk/vision/pom.xml
- sdk/vision/azure-ai-vision-imageanalysis/pom.xml
parameters:
- name: release_azureaivisionimageanalysis
displayName: azure-ai-vision-imageanalysis
type: boolean
default: true
# Note that IgnoreVerifyTypeSpecCodeGenerationError is set to true here in order to ignore
# errors from the task "Verify TypeSpec Code Generation" in the CI pipeline. This task is
# currently failing because the tools do not account for the additional code snippet that
# were inserted into Java source code comments (JavaDocs). This task will be enabled again
# once the tools are updated.
extends:
template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml
parameters:
ServiceDirectory: vision
IgnoreVerifyTypeSpecCodeGenerationError: true
Artifacts:
- name: azure-ai-vision-imageanalysis
groupId: com.azure
safeName: azureaivisionimageanalysis
releaseInBatch: ${{ parameters.release_azureaivisionimageanalysis }}