-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
46 lines (45 loc) · 984 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
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building the project'
}
}
stage('Unit tests') {
steps {
echo 'Running unit tests'
}
}
stage('Integration tests') {
steps {
echo 'Running Integration tests'
}
}
stage('Package') {
steps {
echo 'Packaging the project'
}
}
stage('Deploy env 1') {
steps {
echo 'Deploying to env 1'
}
}
stage('API tests') {
steps {
echo 'Running Api Tests'
}
}
stage('UI tests') {
steps {
echo 'Running UI Tests'
}
}
stage('Deploy env 2') {
steps {
echo 'Deploying to env 2'
}
}
}
}