forked from intel/ai-reference-models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
47 lines (44 loc) · 1.57 KB
/
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
node(params.NODE) {
deleteDir()
// Create a workspace path. We need this to be 79 chars max, otherwise some nodes fail.
// The workspace path varies by node so get that path, and then add on 10 chars of a UUID string.
ws_path = "$WORKSPACE".substring(0, "$WORKSPACE".indexOf("workspace/") + "workspace/".length()) + UUID.randomUUID().toString().substring(0, 10)
ws(ws_path) {
// pull the code
dir( 'intel-models' ) {
checkout scm
}
stage('Install dependencies') {
sh """
#!/bin/bash -x
set -e
# don't know OS, so trying both apt-get and yum install
sudo apt-get clean || sudo yum update -y
sudo apt-get update -y || sudo yum install -y epel-release
sudo apt-get install -y python3-dev python3-pip || sudo yum install -y python36-devel python36-pip
# virtualenv 16.3.0 is broken do not use it
python3 -m pip install --no-cache-dir --user --upgrade pip==19.0.3 virtualenv!=16.3.0 tox
"""
}
stage('Style tests') {
sh """
#!/bin/bash -x
set -e
cd intel-models
~/.local/bin/tox -e py3-flake8
"""
}
stage('Unit tests') {
sh """
#!/bin/bash -x
set -e
cd intel-models
~/.local/bin/tox -e py3-py.test
"""
}
// put benchmarks here later
// stage('Benchmarks') {
// echo 'Benchmark testing..'
// }
}
}