Skip to content

Commit

Permalink
TEST: Change
Browse files Browse the repository at this point in the history
  • Loading branch information
makubacki committed Oct 23, 2024
1 parent d64a2a4 commit 689625a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
12 changes: 4 additions & 8 deletions .sync/azure_pipelines/SetupPythonPreReqs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,21 +35,17 @@ parameters:

steps:

{% raw %}
- ${{ if eq(parameters.install_python, true) }}:
{% raw %}- ${{ if eq(parameters.install_python, true) }}:
- task: UsePythonVersion@0
inputs:
{% endraw %}
inputs:{% endraw %}
versionSpec: {{ sync_version.python_version }}
architecture: x64

{% raw %}
- ${{ if eq(parameters.install_pip_modules, true) }}:
{% raw %}- ${{ if eq(parameters.install_pip_modules, true) }}:
- script: python -m pip install --upgrade pip setuptools wheel
displayName: Install Wheel and SetupTools
condition: succeeded()

- script: pip install ${{ parameters.pip_requirement_files }} --upgrade
displayName: Install and Upgrade pip Modules
condition: succeeded()
{% endraw %}
condition: succeeded(){% endraw %}
3 changes: 1 addition & 2 deletions .sync/containers/Ubuntu-22/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# SPDX-License-Identifier: BSD-2-Clause-Patent
#

{% import '../Version.njk' as sync_version -%}
{% import '../../Version.njk' as sync_version -%}

{% raw %}
# NOTE: Because this pipeline YAML file is a Nunjucks template, the pipeline syntax of `{{}}` will conflict with
Expand All @@ -20,7 +20,6 @@
{% endraw %}

{% raw %}

#
# The build container layer is intended for pipeline use and is the minimal set
# of tools required for building Project MU.
Expand Down

0 comments on commit 689625a

Please sign in to comment.