-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
79 lines (73 loc) · 2.22 KB
/
Jenkinsfile
File metadata and controls
79 lines (73 loc) · 2.22 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// v1
// pipeline {
// agent {
// label "slave"
// }
// stages {
// stage('Clone from GIT') {
// steps {
// echo 'clone the repository'
// git branch:'main', url:"https://github.com/milindkrishna/Java-API-Testing-with-Docker.git"
// }
// }
// stage('Run the stage with docker container') {
// steps {
// echo 'Run test inside container'
// // bat 'docker run milindkrishna/testjavaapidocker:v1.0'
// bat 'docker-compose up'
// }
// }
// stage('Delete docker container') {
// steps {
// echo 'Delete docker container'
// // bat 'docker system prune -af'
// bat 'docker-compose down'
// }
// }
// stage('Jenkins Pipeline completed') {
// steps {
// echo 'Executed Succeessfully !!!!'
// bat 'docker images'
// }
// }
// }
// }
// v2
pipeline {
agent {
label 'slave'
}
stages {
stage('Clone from GIT') {
steps {
echo 'clone the repository'
git branch: 'main', url: "https://github.com/milindkrishna/Java-API-Testing-with-Docker.git"
}
}
stage('Run the test') {
steps {
echo 'Run test inside container'
bat '''
docker run --rm ^
-v "%cd%":/workspace ^
-w /workspace ^
milindkrishna/testjavaapidocker:v1.0 ^
mvn clean test
'''
}
}
stage('Jenkins Pipeline completed') {
steps {
echo 'Executed Successfully !!!!'
bat 'docker images'
}
}
stage('Delete docker container') {
steps {
echo 'Delete docker container'
bat 'docker-compose down'
bat 'docker system prune -af'
}
}
}
}