-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathSecond_Pipeline
More file actions
59 lines (53 loc) · 1.73 KB
/
Second_Pipeline
File metadata and controls
59 lines (53 loc) · 1.73 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
pipeline {
agent any
stages {
stage('Git-Checkout') {
steps {
echo "Checking out from Git Repo";
/* Put in the actual Code for checking out code from your Git Repo here */
}
}
stage('Build') {
steps {
echo "Building the checked-out project!";
/* Put in the actual Code for Executing Build.bat file from your Git Repo here */
}
}
stage('Unit-Test') {
steps {
echo "Running JUnit Tests";
/* Put in the actual Code for Executing Unit.bat file from your Git Repo here */
}
}
stage('Quality-Gate') {
steps {
echo "Verifying Quality Gates";
/* Put in the actual Code for Executing Quality.bat file from your Git Repo here */
}
}
stage('Deploy') {
steps {
echo "Deploying to Stage Environment for more tests!";
/* Put in the actual Code for Executing Deploy.bat file from your Git Repo here */
}
}
}
post {
always {
echo 'This will always run'
}
success {
echo 'This will run only if successful'
}
failure {
echo 'This will run only if failed'
}
unstable {
echo 'This will run only if the run was marked as unstable'
}
changed {
echo 'This will run only if the state of the Pipeline has changed'
echo 'For example, if the Pipeline was previously failing but is now successful'
}
}
}