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
2 changes: 1 addition & 1 deletion ansible/roles/remove-old-ecs-pr-deploys/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
terraform_lock_timeout_mins: 0

- name: maybe remove deployment
include: remove-ecs-deployment.yml
include_tasks: remove-ecs-deployment.yml
with_list: "{{ ns_service_tuples }}"
loop_control:
loop_var: ns_service_tuple
Expand Down
20 changes: 20 additions & 0 deletions azure/cleanup-ecs-pr-proxies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,26 @@ jobs:
debug: true
displayName: cache utils pre-requisites

- bash: |
PATCH=$(curl -s https://api.github.com/repos/actions/python-versions/releases \
| jq -r '[.[] | .tag_name | select(startswith("3.13"))] | .[]' \
| sort -V | tail -n 1 | cut -d- -f1)
echo "Resolved latest python version: $PATCH"
echo "##vso[task.setvariable variable=LD_LIBRARY_PATH;]/agent/_work/_tool/Python/${PATCH}/x64/lib/"
displayName: 'Query and set python tool cache path'

- task: UsePythonVersion@0
name: UsePy
displayName: "Use Python 3.13"
inputs:
versionSpec: 3.13

- bash: |
echo "Checking the python version in use to set LD_LIBRARY_PATH"
echo "Python location: $(UsePy.pythonLocation)"
echo "##vso[task.setvariable variable=LD_LIBRARY_PATH]$(UsePy.pythonLocation)/lib"
displayName: 'Set LD_LIBRARY_PATH'

- bash: |
make install
displayName: install dependencies
Expand Down
17 changes: 16 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ boto3 = "^1.34.0"
ansible-core = "^2.19.4"
urllib3 = "^2.5.0"
cryptography = "44.0.1"
click="^8.1.2"

[poetry.group.dev.dependencies]
ansible-lint = "^6.0"
Expand Down