Update Jenkinsfile

This commit is contained in:
Stas Bezuhlyi 2021-04-03 22:22:59 +03:00 committed by GitHub
parent 20208ac20b
commit 30b9f5b20a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

8
Jenkinsfile vendored
View file

@ -7,7 +7,7 @@ pipeline {
checkout scm checkout scm
} }
} }
stage ('Initialize') { stage ('Initialaze') {
steps { steps {
sh ''' sh '''
echo "PATH = ${PATH}" echo "PATH = ${PATH}"
@ -19,13 +19,13 @@ pipeline {
steps { steps {
echo 'Running build automation' echo 'Running build automation'
sh ''' sh '''
./mvnw clean ./mvnw package
''' '''
} }
} }
stage('Test') { stage('CREATE ARTIFACT') {
steps { steps {
echo 'Testing..' echo 'Creating artifact..'
} }
} }
stage('Deploy') { stage('Deploy') {