From 9cdef0a9e332c78d1f3c34e48870f137a1634c48 Mon Sep 17 00:00:00 2001 From: jerick Date: Mon, 2 Feb 2026 13:45:27 -0500 Subject: [PATCH] changed where collections are installed for build --- Jenkinsfile | 2 +- ansible.cfg | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index b789794..3804b55 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -63,7 +63,7 @@ pipeline { stage('Install Ansible Collections') { steps { - sh 'ansible-galaxy collection install -r requirements.yml --force' + sh 'ansible-galaxy collection install -r requirements.yml -p ./collections --force' } } diff --git a/ansible.cfg b/ansible.cfg index 706d06b..36541ef 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -1,6 +1,7 @@ [defaults] inventory = ./inventory/hosts.yml roles_path = ./roles +collections_path = ./collections host_key_checking = False retry_files_enabled = False gathering = smart