From 6fbadf73e3105b68db6bbb9ab772037795c4f1aa Mon Sep 17 00:00:00 2001 From: dvirlabs <114520947+dvirlabs@users.noreply.github.com> Date: Wed, 22 Apr 2026 21:57:15 +0300 Subject: [PATCH] Fix failed step --- .woodpecker.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) 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