EpicKnarvik97
1887d7c1fe
Some checks failed
KnarCraft/FFmpegConvert/master There was a failure building this commit
23 lines
521 B
Groovy
23 lines
521 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
echo 'Building...'
|
|
sh 'mvn clean & mvn validate & mvn compile'
|
|
}
|
|
}
|
|
stage('Test') {
|
|
steps {
|
|
echo 'Testing...'
|
|
sh 'mvn test'
|
|
}
|
|
}
|
|
stage('Deploy') {
|
|
steps {
|
|
echo 'Deploying...'
|
|
sh 'mvn package & mvn verify & mvn install & mvn deploy'
|
|
}
|
|
}
|
|
}
|
|
} |