Fix failed step
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
dvirlabs 2026-04-22 21:57:15 +03:00
parent fc8cb0c40e
commit 6fbadf73e3

View File

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