forked from laramies/metagoofil
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathJenkinsfile
59 lines (59 loc) · 1.83 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
pipeline {
agent none
stages {
stage('Build') {
agent {
docker {
image 'python:3-alpine'
}
}
steps {
sh 'python -m py_compile app.py'
sh 'python -m compileall mercurius'
}
}
stage('Test') {
agent {
docker {
image 'python:3.6' //only version 2.7 of python -> 'qnib/pytest'
}
}
steps {
sh 'jenkins/run_tests.sh'
}
post {
always {
junit 'test-reports/results.xml'
recordIssues enabledForFailure: true, tool: pyLint(pattern: 'test-reports/pylint.out')
step([
$class: 'CoberturaPublisher',
autoUpdateHealth: false,
autoUpdateStability: false,
coberturaReportFile: '**/test-reports/coverage.xml',
failUnhealthy: false,
failUnstable: false,
maxNumberOfBuilds: 0,
onlyStable: false,
sourceEncoding: 'ASCII',
zoomCoverageChart: false
])
}
}
}
// stage('Deliver') {
// agent {
// docker {
// image 'cdrx/pyinstaller-linux:python3'
// }
// }
// steps {
// sh 'pyinstaller --onefile --noconfirm --name mercurius app.py'
// }
// post {
// success {
// archiveArtifacts 'dist/mercurius'
// }
// }
// }
}
}