Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions eng/pipelines/templates/jobs/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ parameters:
- name: ServiceDirectory
type: string
default: 'not-specified' # Set a default that breaks in obvious ways.
- name: ExcludePaths
type: object
default: []
- name: TestPipeline
type: boolean
default: false
Expand Down Expand Up @@ -99,6 +102,7 @@ jobs:
- template: /eng/common/pipelines/templates/steps/save-package-properties.yml
parameters:
ServiceDirectory: ${{parameters.ServiceDirectory}}
ExcludePaths: ${{parameters.ExcludePaths}}

- template: /eng/pipelines/templates/steps/generate-project-list-and-cache-maven-repository.yml
parameters:
Expand Down
4 changes: 4 additions & 0 deletions eng/pipelines/templates/stages/archetype-sdk-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ parameters:
- name: ServiceDirectory
type: string
default: not-specified
- name: ExcludePaths
type: object
default: []
- name: MatrixConfigs
type: object
default:
Expand Down Expand Up @@ -85,6 +88,7 @@ extends:
TestPipeline: ${{ parameters.TestPipeline }}
SDKType: ${{ parameters.SDKType }}
Artifacts: ${{ parameters.Artifacts }}
ExcludePaths: ${{parameters.ExcludePaths}}
TimeoutInMinutes: ${{ parameters.TimeoutInMinutes }}
IgnoreVerifyTypeSpecCodeGenerationError: ${{ parameters.IgnoreVerifyTypeSpecCodeGenerationError }}
ReleaseArtifacts:
Expand Down
Loading