updating the test jenkinsfiles

This commit is contained in:
hyung-hwan 2021-09-01 12:36:00 +00:00
parent 4d0c2033a6
commit 4ad43b5d3b

View File

@ -43,6 +43,7 @@ pipeline {
stages {
stage('Checkout') {
steps {
echo "Checking out for ${BUILD_TYPE} on ${PLATFORM}"
checkout([$class: 'SubversionSCM',
additionalCredentials: [],
excludedCommitMessages: '',
@ -64,7 +65,7 @@ pipeline {
stage('Build') {
steps {
echo "Do build for ${BUILD_TYPE} on ${PLATFORM}"
sh "./configure && make"
sh "ls -laF && ./configure && make"
}
}