diff --git a/.woodpecker.yml b/.woodpecker.yml index 460ff80..becb23e 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -102,10 +102,12 @@ steps: ANSIBLE_CALLBACK_WHITELIST: "minimal" ANSIBLE_FORCE_COLOR: "False" ANSIBLE_RETRY_FILES_ENABLED: "False" + ANSIBLE_UNSAFE_WRITES: "True" + ANSIBLE_LIBRARY_CACHING: "True" commands: - | - # Increase file descriptor limit for Ansible - ulimit -n 4096 + # Increase file descriptor limit for Ansible (max safe value) + ulimit -n 65536 # Install dependencies: curl for HTTP requests, jq for JSON formatting apk add --no-cache curl jq > /dev/null 2>&1 @@ -152,10 +154,12 @@ steps: ANSIBLE_CALLBACK_WHITELIST: "minimal" ANSIBLE_FORCE_COLOR: "False" ANSIBLE_RETRY_FILES_ENABLED: "False" + ANSIBLE_UNSAFE_WRITES: "True" + ANSIBLE_LIBRARY_CACHING: "True" commands: - | - # Increase file descriptor limit for Ansible - ulimit -n 4096 + # Increase file descriptor limit for Ansible (max safe value) + ulimit -n 65536 # Install dependencies: curl for HTTP requests, jq for JSON formatting apk add --no-cache curl jq bash > /dev/null 2>&1