Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

Commit

Permalink
Fix pipeline.
Browse files Browse the repository at this point in the history
  • Loading branch information
JGoutin committed Jul 21, 2022
1 parent 419a4f0 commit 6dab42f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deployment/Dockerfile.j2
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ echo "disable-pip-version-check = true " >> /etc/pip.conf && \
python3 -m pip install -U{% if osName in ("centos", "rhel") and osVersion == "7" %} --prefix='/usr'{% endif %} \
pip \
setuptools && \
python3 -m pip install -U{% if osName in ("centos", "rhel") and osVersion == "7" %} --prefix='/usr'{% endif %} \
python3 -m pip install{% if osName in ("centos", "rhel") and osVersion != "9" %} -U{% endif %}{% if osName in ("centos", "rhel") and osVersion == "7" %} --prefix='/usr'{% endif %} \
cython \
flake8 \
pytest \
Expand Down
4 changes: 2 additions & 2 deletions deployment/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ stages:
- stage: build_packages
displayName: Create packages
# Build packages only if tagged or scheduled
dependsOn: compile_and_test
condition: and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/tags'))
dependsOn: []
condition: startsWith(variables['Build.SourceBranch'], 'refs/tags')
jobs:
- template: buildPackages.yml

Expand Down

0 comments on commit 6dab42f

Please sign in to comment.