updateing the test jenkinsfiles

This commit is contained in:
hyung-hwan 2021-09-01 12:38:59 +00:00
parent 4ad43b5d3b
commit b8c4edef55

View File

@ -3,7 +3,8 @@ pipeline {
agent none agent none
environment { environment {
THIS_SVN_URL = 'https://code.miflux.com/svn/hio/trunk/hio' THIS_PROJECT = 'hio'
THIS_SVN_URL = "https://code.miflux.com/svn/hio/trunk/${THIS_PROJECT}"
} }
stages { stages {
@ -65,14 +66,14 @@ pipeline {
stage('Build') { stage('Build') {
steps { steps {
echo "Do build for ${BUILD_TYPE} on ${PLATFORM}" echo "Do build for ${BUILD_TYPE} on ${PLATFORM}"
sh "ls -laF && ./configure && make" sh "cd ${THIS_PROJECT} && ./configure && make"
} }
} }
stage('Test') { stage('Test') {
steps { steps {
echo "Do Test for ${BUILD_TYPE} on ${PLATFORM}" echo "Do Test for ${BUILD_TYPE} on ${PLATFORM}"
sh "make check" sh "cd ${THIS_PROJECT} && make check"
} }
} }
} }