Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add artifacts_binary and artifacts_other parameters to Jobs/PrGate.yml #392

Merged
Merged
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
10 changes: 10 additions & 0 deletions Jobs/PrGate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,14 @@ parameters:
displayName: Variable name that hosts pool name to be used for self-hosted agents
type: string
default: ''
- name: artifacts_binary
displayName: Binary Artifacts to Publish
type: string
default: ''
- name: artifacts_other
displayName: Other Artifacts to Publish
type: string
default: ''
- name: os_type
displayName: OS type on the self-hosted agent pools
type: string
Expand Down Expand Up @@ -158,6 +166,8 @@ jobs:
- template: ../Steps/PrGate.yml
parameters:
artifacts_identifier: '${{ item.Key }} ${{ item.Value.Targets }}'
artifacts_binary: ${{ parameters.artifacts_binary }}
artifacts_other: ${{ parameters.artifacts_other }}
build_file: ${{ parameters.build_file }}
build_pkgs: ${{ item.Value.Pkgs }}
build_targets: ${{ item.Value.Targets }}
Expand Down
Loading