Skip to content

Commit e771f6a

Browse files
authored
Plumb ExcludesPaths from the archetype through ci.yml (Azure#43832)
* Plumb ExcludesPaths from the archetype through ci.yml * derp derp, actually plumb it from the archetype to the ci.yml
1 parent 6df1ef4 commit e771f6a

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

eng/pipelines/templates/jobs/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ parameters:
55
- name: ServiceDirectory
66
type: string
77
default: 'not-specified' # Set a default that breaks in obvious ways.
8+
- name: ExcludePaths
9+
type: object
10+
default: []
811
- name: TestPipeline
912
type: boolean
1013
default: false
@@ -99,6 +102,7 @@ jobs:
99102
- template: /eng/common/pipelines/templates/steps/save-package-properties.yml
100103
parameters:
101104
ServiceDirectory: ${{parameters.ServiceDirectory}}
105+
ExcludePaths: ${{parameters.ExcludePaths}}
102106

103107
- template: /eng/pipelines/templates/steps/generate-project-list-and-cache-maven-repository.yml
104108
parameters:

eng/pipelines/templates/stages/archetype-sdk-client.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ parameters:
1414
- name: ServiceDirectory
1515
type: string
1616
default: not-specified
17+
- name: ExcludePaths
18+
type: object
19+
default: []
1720
- name: MatrixConfigs
1821
type: object
1922
default:
@@ -85,6 +88,7 @@ extends:
8588
TestPipeline: ${{ parameters.TestPipeline }}
8689
SDKType: ${{ parameters.SDKType }}
8790
Artifacts: ${{ parameters.Artifacts }}
91+
ExcludePaths: ${{parameters.ExcludePaths}}
8892
TimeoutInMinutes: ${{ parameters.TimeoutInMinutes }}
8993
IgnoreVerifyTypeSpecCodeGenerationError: ${{ parameters.IgnoreVerifyTypeSpecCodeGenerationError }}
9094
ReleaseArtifacts:

0 commit comments

Comments
 (0)