-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
49 lines (49 loc) · 883 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
pipeline {
agent any
stages {
stage('Preparation') {
parallel {
stage('Preparation') {
steps {
echo 'First Preparation'
}
}
stage('Preparation 2') {
steps {
echo 'Second Preparation'
}
}
}
}
stage('Build') {
steps {
echo 'In Build Step'
echo 'Building crawler'
}
}
stage('Test') {
parallel{
stage('API Testing'){
steps{
echo "Running api testing"
}
}
stage('Unit Testing'){
steps{
echo "Running Unit Testing"
}
}
stage('UI Testing'){
steps{
echo "Running UI Testing"
}
}
}
}
stage('Result') {
steps {
echo 'Publishing Result'
}
}
}
}