-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
52 lines (49 loc) · 938 Bytes
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
pipeline
{
agent any
/*triggers {
pollSCM '* * * * *'
upstream 'ProbarAgente'
}*/
stages {
stage('compilar') {
steps {
echo "Estoy compilando el codigo de Sprint Boot"
sh './mvnw compile'
}
}
stage('test') {
steps {
echo "Estoy probando el codigo de Sprint Boot"
sh './mvnw test'
}
}
stage('package') {
steps {
echo "Estoy generando el JAR del proyecto"
sh './mvnw package'
}
post {
failure {
echo 'Ha habido algún problema con el JAR'
sh 'rm -rf target'
}
}
}
stage('deploy') {
steps {
echo "Estoy desplegando a /tmp del servidor Jenkins"
sh 'cp target/calculadora-0.0.1-SNAPSHOT.jar /tmp'
}
}
}
post {
success {
echo 'Se ha terminado con exito'
sh 'echo test > /tmp/result.txt'
}
failure {
echo 'He tenido algún problema'
}
}
}