jenkinsfile tools test

This commit is contained in:
yetju000 2019-11-23 10:30:30 +01:00
parent f16d33f82f
commit 43a28488a8

8
Jenkinsfile vendored
View File

@ -6,13 +6,19 @@ pipeline {
} }
stages { stages {
stage('Build') { stage('Initialize') {
steps { steps {
sh ''' sh '''
echo "PATH = ${PATH}" echo "PATH = ${PATH}"
echo "M2_HOME = ${M2_HOME}" echo "M2_HOME = ${M2_HOME}"
''' '''
}
}
stage('Build') {
steps {
echo 'Building..' echo 'Building..'
sh 'cd BackEnd'
sh 'mvn clean install'
} }
} }
stage('Test') { stage('Test') {