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