EpicKnarvik97
1c7d6ad0c9
All checks were successful
KnarCraft/FFmpegConvert/master This commit looks good
23 lines
546 B
Groovy
23 lines
546 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 clean & mvn test'
|
|
}
|
|
}
|
|
stage('Deploy') {
|
|
steps {
|
|
echo 'Deploying...'
|
|
sh 'mvn clean & mvn compile & mvn package & mvn verify & mvn install'
|
|
}
|
|
}
|
|
}
|
|
} |