forked from openvinotoolkit/model_server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathJenkinsfile
40 lines (35 loc) · 901 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
pipeline {
agent any
stages {
stage('prepare virtualenv') {
steps {
sh './tests/scripts/prepare-virtualenv.sh'
}
}
stage('style tests') {
steps {
sh './tests/scripts/style.sh'
}
}
stage('unit tests') {
steps {
sh './tests/scripts/unit-tests.sh'
}
}
stage('functional tests bin') {
steps {
sh './tests/scripts/functional-tests-bin.sh'
}
}
stage('functional tests apt ubuntu') {
steps {
sh './tests/scripts/functional-tests-apt-ubuntu.sh'
}
}
stage('functional tests openvino base') {
steps {
sh './tests/scripts/functional-tests-ov-base.sh'
}
}
}
}