updated vagrant/Jenkinsfile

This commit is contained in:
hyung-hwan 2021-08-29 04:24:29 +00:00
parent dcaca63b13
commit 9675c4b1c7

10
vagrant/Jenkinsfile vendored
View File

@ -1,5 +1,7 @@
pipeline { pipeline {
agent any ##agent none
##agent any
agent { label 'vagrant' }
##environment { ##environment {
## CC = 'gcc' ## CC = 'gcc'
@ -40,4 +42,10 @@ pipeline {
} }
} }
} }
post {
success {
echo "SUCCESS!!!"
}
}
} }