Updates Jenkinsfile
Some checks failed
KnarCraft/FFmpegConvert/master There was a failure building this commit
Some checks failed
KnarCraft/FFmpegConvert/master There was a failure building this commit
This commit is contained in:
parent
0b3d46c704
commit
1887d7c1fe
11
Jenkinsfile
vendored
11
Jenkinsfile
vendored
@ -4,24 +4,19 @@ pipeline {
|
|||||||
stage('Build') {
|
stage('Build') {
|
||||||
steps {
|
steps {
|
||||||
echo 'Building...'
|
echo 'Building...'
|
||||||
mvn clean
|
sh 'mvn clean & mvn validate & mvn compile'
|
||||||
mvn validate
|
|
||||||
mvn compile
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Test') {
|
stage('Test') {
|
||||||
steps {
|
steps {
|
||||||
echo 'Testing...'
|
echo 'Testing...'
|
||||||
mvn test
|
sh 'mvn test'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Deploy') {
|
stage('Deploy') {
|
||||||
steps {
|
steps {
|
||||||
echo 'Deploying...'
|
echo 'Deploying...'
|
||||||
mvn package
|
sh 'mvn package & mvn verify & mvn install & mvn deploy'
|
||||||
mvn verify
|
|
||||||
mvn install
|
|
||||||
mvn deploy
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user