Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
Plumb ExcludesPaths from the archetype through ci.yml
  • Loading branch information
JimSuplizio committed Jan 17, 2025
commit 91ae781d8270fc1b0cc7565ee6723ebe4aaa78ee
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
3 changes: 3 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
Loading