Skip to content
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: 4 additions & 1 deletion .azure-pipelines/templates/install-azure-cli-edge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ steps:
- script: 'pip uninstall azure-cli -y'
displayName: 'Remove Azure CLI'

- script: 'pip install --pre azure-cli --extra-index-url https://azurecliprod.blob.core.windows.net/edge --upgrade-strategy eager'
# - script: 'pip install --pre azure-cli --extra-index-url https://azurecliprod.blob.core.windows.net/edge --upgrade-strategy eager'
# displayName: 'Install Azure CLI Edge'

- script: 'pip install azure-cli'
displayName: 'Install Azure CLI Edge'

- script: 'python --version'
Expand Down
4 changes: 3 additions & 1 deletion .github/actions/install-azure-cli-edge/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ runs:
shell: bash
- run: pip uninstall azure-cli -y
shell: bash
- run: pip install --pre azure-cli --extra-index-url https://azurecliprod.blob.core.windows.net/edge --upgrade-strategy eager
# - run: pip install --pre azure-cli --extra-index-url https://azurecliprod.blob.core.windows.net/edge --upgrade-strategy eager
# shell: bash
- run: pip install azure-cli
shell: bash
- run: python --version
shell: bash
Expand Down
Loading