-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrial
More file actions
29 lines (21 loc) · 648 Bytes
/
trial
File metadata and controls
29 lines (21 loc) · 648 Bytes
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
@Library('cummins-library')
import org.foo.BuildStage
BuildStage buildStage = new BuildStage(this)
stage('Basic Info'){
echo 'Status: Initiation of pipeline: Accepted'
}
stage('SCM Checkout') {
echo 'SCM checkout started'
buildStage.scmStageExecution()
echo 'SCM checkout finished'
}
stage('Build'){
echo 'Build job execution started'
buildStage.buildStageExecution()
echo 'Build job execution finished'
}
stage('Deploy'){
echo 'Deploy job execution started'
buildStage.deployStageExecution()
echo 'Deploy job execution finished'
}