-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile_sample
More file actions
57 lines (40 loc) · 1.05 KB
/
Jenkinsfile_sample
File metadata and controls
57 lines (40 loc) · 1.05 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
pipeline{
agent any
stages{
stage("Build"){
steps{
echo("build the project")
}
}
stage("Deploy to dev"){
steps{
echo("deploying to dev env")
}
}
stage("Deploy to qa"){
steps{
echo("deploying to qa env")
}
}
stage("Run regression automation test cases"){
steps{
echo("Run regression automation test cases")
}
}
stage("Deploy to stage"){
steps{
echo("deploying to stage env")
}
}
stage("Run sanity automation test cases"){
steps{
echo("Run sanity automation test cases")
}
}
stage("Deploy to prod"){
steps{
echo("deploying to prod env")
}
}
}
}