From 509f3db5343f8c1d79c2aabd61548a499b026776 Mon Sep 17 00:00:00 2001 From: Nicolas Arenas Date: Mon, 30 Sep 2024 18:35:11 +0200 Subject: [PATCH] Install plugin for esxi and specify provider --- tests/API-dhcp/Jenkinsfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/API-dhcp/Jenkinsfile b/tests/API-dhcp/Jenkinsfile index 598d3ba..141b574 100644 --- a/tests/API-dhcp/Jenkinsfile +++ b/tests/API-dhcp/Jenkinsfile @@ -11,8 +11,10 @@ pipeline { stage('Prepare environment') { steps { dir ('tests/API-dhcp') { + echo "Install vagrant plugin" + sh 'vagrant plugin install vagrant-vmware-esxi' echo "Deploy API server for DHCP with Vagrant" - sh 'vagrant up' + sh 'vagrant up --provider=vmware_esxi' } } }