updated vagrant/Jenkinsfile to get rid of make init(vagrant init)

This commit is contained in:
hyung-hwan 2021-08-29 04:30:18 +00:00
parent 7833dc6288
commit 49c74a810a

2
vagrant/Jenkinsfile vendored
View File

@ -13,7 +13,7 @@ pipeline {
stage('Build') {
steps {
echo "Building a virtual machine - ${env.BUILD_ID} on ${env.JENKINS_URL}"
sh "make init && make up"
sh "make up"
}
}