-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
33 lines (32 loc) · 990 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
pipeline {
agent any
stages {
stage('Build JAR File') {
steps {
checkout scmGit(branches: [[name: '*/main']], extensions: [], userRemoteConfigs: [[url: 'https://github.com/JaimeRiquelme/Tingeso_Entrega_1']])
dir("api/demo") {
bat ".\\gradlew clean build"
}
}
}
stage('Test') {
steps {
dir("api/demo") {
bat ".\\gradlew test"
}
}
}
stage('Deploy') {
steps {
dir("api/demo") {
script {
withDockerRegistry(credentialsId: 'docker-credenciales') {
bat "docker build -t jaimeriquelme/backend-imagen ."
bat "docker push jaimeriquelme/backend-imagen"
}
}
}
}
}
}
}