-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
65 lines (50 loc) · 1.41 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!groovy
node {
timeout(30) {
currentBuild.result = 'SUCCESS'
stage ('Alert Github and Slack') {
step([$class: 'GitHubSetCommitStatusBuilder'])
}
stage('Clean Last Build') {
sh('rm -rf *')
}
stage ('Clone Repository') {
checkout scm
}
try {
stage ('Install Dependencies') {
// Dependenceies already present on CI server and deadsnakes repo dead
//sh 'sudo add-apt-repository ppa:fkrull/deadsnakes'
//sh 'sudo apt-get update'
//sh 'sudo apt-get install -y python3.5'
//sh 'sudo python3.5 -m "pip" install virtualenv'
}
stage ('Create Test Results Folder') {
sh 'mkdir -p test_results'
}
stage ('Setup virtualenv') {
//sh 'virtualenv -p python3.5 venv'
//sh 'source venv/bin/activate'
}
stage ('Install pip dependencies') {
sh 'python3.5 -m pip install --upgrade -r requirements.txt'
}
stage ('Run python linter') {
sh 'pep8 dipla'
sh 'pep8 tests'
}
stage ('Build example binaries') {
sh 'tests/example_binaries/build_binaries.sh'
}
stage ('Run Tests') {
sh 'python3.5 -m "nose" -v'
}
stage ('Generate Reports') {
step([$class: 'GitHubCommitStatusSetter'])
}
} catch (err) {
currentBuild.result = 'FAILURE'
throw err
}
}
}