pipeline { agent any environment { ANSIBLE_INVENTORY = 'inventory.ini' ANSIBLE_PLAYBOOK = 'update_debian.yml' } stages { stage('Clone git') { steps { // Clonage du dépôt Git sh "git clone https://git.zestes.fr/garfi/jenkins-update.git" } } post { always { // Nettoyage de l'espace de travail cleanWs() } } }