-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
58 lines (50 loc) · 994 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
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
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Build the project'
}
}
stage('Test') {
parallel {
stage('Test1') {
steps {
echo 'Test all the cases'
}
}
stage('Test2') {
steps {
echo 'Parallel test'
}
}
stage('Test3') {
steps {
echo "This is test3 for environment variable : ${PresentationPath}"
}
}
}
}
stage('Deploy') {
when {
branch 'master'
}
parallel {
stage('Deploy') {
steps {
input 'Do you want to deploy?'
echo 'Deployed the changes'
}
}
stage('Artifacts') {
steps {
writeFile(file: 'testFile.txt', text: 'Hello World!')
}
}
}
}
}
environment {
PresentationPath = 'D:\\Personal\\certificate\\presentations'
}
}