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

Steps/BuildPlatform.yml & Steps/PrGate.yml: Add parameter to install pip modules #342

Merged
merged 2 commits into from
May 17, 2024
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
5 changes: 5 additions & 0 deletions Steps/BuildPlatform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ parameters:
displayName: Install Build Tools
type: boolean
default: true
- name: install_pip_modules
displayName: Install PIP Modules
type: boolean
default: true
- name: tool_chain_tag
displayName: Tool Chain (e.g. VS2022)
type: string
Expand All @@ -78,6 +82,7 @@ steps:
- template: SetupPythonPreReqs.yml
parameters:
install_python: ${{ parameters.install_tools }}
install_pip_modules: ${{ parameters.install_pip_modules }}

# Set default
- bash: echo "##vso[task.setvariable variable=pkg_count]${{ 1 }}"
Expand Down
5 changes: 5 additions & 0 deletions Steps/PrGate.yml
pharlikar marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ parameters:
displayName: Install Build Tools
type: boolean
default: true
- name: install_pip_modules
displayName: Install PIP Modules
type: boolean
default: true
- name: tool_chain_tag
displayName: Tool Chain (e.g. VS2022)
type: string
Expand All @@ -95,6 +99,7 @@ steps:
- template: SetupPythonPreReqs.yml
parameters:
install_python: ${{ parameters.install_tools }}
install_pip_modules: ${{ parameters.install_pip_modules }}

# Set Default Package Info
- bash: |
Expand Down