##// END OF EJS Templates
jenkinsfile: delete all old files in the workspace...
domruf -
r6507:15a12f2a default
parent child Browse files
Show More
@@ -1,162 +1,166 b''
1 1 node {
2 2 def createvirtualenv = ''
3 3 def activatevirtualenv = ''
4 4 if (isUnix()) {
5 5 createvirtualenv = 'rm -r $JENKINS_HOME/venv/$JOB_NAME || true && virtualenv $JENKINS_HOME/venv/$JOB_NAME'
6 6 activatevirtualenv = '. $JENKINS_HOME/venv/$JOB_NAME/bin/activate'
7 7 } else {
8 8 createvirtualenv = 'rmdir /s /q %JENKINS_HOME%\\venv\\%JOB_NAME% || true && virtualenv %JENKINS_HOME%\\venv\\%JOB_NAME%'
9 9 activatevirtualenv = 'call %JENKINS_HOME%\\venv\\%JOB_NAME%\\Scripts\\activate.bat'
10 10 }
11 11
12 12 stage('checkout') {
13 13 checkout scm
14 14 if (isUnix()) {
15 15 sh 'hg --config extensions.purge= purge --all'
16 16 } else {
17 17 bat 'hg --config extensions.purge= purge --all'
18 18 }
19 19 }
20 20 stage('virtual env') {
21 21 def virtualenvscript = """$createvirtualenv
22 22 $activatevirtualenv
23 23 python -m pip install --upgrade pip
24 24 pip install --upgrade setuptools
25 25 pip install --upgrade pylint
26 26 pip install --upgrade pytest-cov
27 27 """
28 28 if (isUnix()) {
29 29 virtualenvscript += """
30 30 pip install --upgrade python-ldap
31 31 pip install --upgrade python-pam
32 32 """
33 33 sh virtualenvscript
34 34 } else {
35 35 bat virtualenvscript
36 36 }
37 37 }
38 38 stage('setup') {
39 39 def virtualenvscript = """$activatevirtualenv
40 40 pip install --upgrade -e .
41 41 pip install -r dev_requirements.txt
42 42 python setup.py compile_catalog
43 43 """
44 44 if (isUnix()) {
45 45 sh virtualenvscript
46 46 } else {
47 47 bat virtualenvscript
48 48 }
49 49 stash name: 'kallithea', useDefaultExcludes: false
50 50 }
51 51 stage('pylint') {
52 52 sh script: """$activatevirtualenv
53 53 pylint -j 0 --disable=C -f parseable kallithea > pylint.out
54 54 """, returnStatus: true
55 55 archiveArtifacts 'pylint.out'
56 56 try {
57 57 step([$class: 'WarningsPublisher', canComputeNew: false, canResolveRelativePaths: false, defaultEncoding: '', excludePattern: '', healthy: '', includePattern: '', messagesPattern: '', parserConfigurations: [[parserName: 'PyLint', pattern: 'pylint.out']], unHealthy: ''])
58 58 } catch (java.lang.IllegalArgumentException exc) {
59 59 echo "You need to install the 'Warnings Plug-in' to display the pylint report."
60 60 currentBuild.result = 'UNSTABLE'
61 61 echo "Caught: ${exc}"
62 62 }
63 63 }
64 64 def pytests = [:]
65 65 pytests['sqlite'] = {
66 66 ws {
67 deleteDir()
67 68 unstash name: 'kallithea'
68 69 if (isUnix()) {
69 70 sh script: """$activatevirtualenv
70 71 py.test -p no:sugar --cov-config .coveragerc --junit-xml=pytest_sqlite.xml --cov=kallithea --cov-report xml
71 72 """, returnStatus: true
72 73 } else {
73 74 bat script: """$activatevirtualenv
74 75 py.test -p no:sugar --cov-config .coveragerc --junit-xml=pytest_sqlite.xml --cov=kallithea --cov-report xml
75 76 """, returnStatus: true
76 77 }
77 78 sh 'sed --in-place "s/\\(classname=[\'\\"]\\)/\\1SQLITE./g" pytest_sqlite.xml'
78 79 archiveArtifacts 'pytest_sqlite.xml'
79 80 junit 'pytest_sqlite.xml'
80 81 try {
81 82 step([$class: 'CoberturaPublisher', autoUpdateHealth: false, autoUpdateStability: false, coberturaReportFile: 'coverage.xml', failNoReports: false, failUnhealthy: false, failUnstable: false, maxNumberOfBuilds: 0, onlyStable: false, zoomCoverageChart: false])
82 83 } catch (java.lang.IllegalArgumentException exc) {
83 84 echo "You need to install the pipeline compatible 'CoberturaPublisher Plug-in' to display the coverage report."
84 85 currentBuild.result = 'UNSTABLE'
85 86 echo "Caught: ${exc}"
86 87 }
87 88 }
88 89 }
89 90 if (isUnix()) {
90 91 pytests['de'] = {
91 92 ws {
93 deleteDir()
92 94 unstash name: 'kallithea'
93 95 withEnv(['LANG=de_DE.UTF-8',
94 96 'LANGUAGE=de',
95 97 'LC_ADDRESS=de_DE.UTF-8',
96 98 'LC_IDENTIFICATION=de_DE.UTF-8',
97 99 'LC_MEASUREMENT=de_DE.UTF-8',
98 100 'LC_MONETARY=de_DE.UTF-8',
99 101 'LC_NAME=de_DE.UTF-8',
100 102 'LC_NUMERIC=de_DE.UTF-8',
101 103 'LC_PAPER=de_DE.UTF-8',
102 104 'LC_TELEPHONE=de_DE.UTF-8',
103 105 'LC_TIME=de_DE.UTF-8',
104 106 ]) {
105 107 sh script: """$activatevirtualenv
106 108 py.test -p no:sugar --cov-config .coveragerc --junit-xml=pytest_de.xml --cov=kallithea --cov-report xml
107 109 """, returnStatus: true
108 110 }
109 111 sh 'sed --in-place "s/\\(classname=[\'\\"]\\)/\\1DE./g" pytest_de.xml'
110 112 archiveArtifacts 'pytest_de.xml'
111 113 junit 'pytest_de.xml'
112 114 }
113 115 }
114 116 pytests['mysql'] = {
115 117 ws {
118 deleteDir()
116 119 unstash name: 'kallithea'
117 120 sh """$activatevirtualenv
118 121 pip install --upgrade MySQL-python
119 122 """
120 123 withEnv(['TEST_DB=mysql://kallithea:kallithea@jenkins_mysql/kallithea_test?charset=utf8']) {
121 124 if (isUnix()) {
122 125 sh script: """$activatevirtualenv
123 126 py.test -p no:sugar --cov-config .coveragerc --junit-xml=pytest_mysql.xml --cov=kallithea --cov-report xml
124 127 """, returnStatus: true
125 128 } else {
126 129 bat script: """$activatevirtualenv
127 130 py.test -p no:sugar --cov-config .coveragerc --junit-xml=pytest_mysql.xml --cov=kallithea --cov-report xml
128 131 """, returnStatus: true
129 132 }
130 133 }
131 134 sh 'sed --in-place "s/\\(classname=[\'\\"]\\)/\\1MYSQL./g" pytest_mysql.xml'
132 135 archiveArtifacts 'pytest_mysql.xml'
133 136 junit 'pytest_mysql.xml'
134 137 }
135 138 }
136 139 pytests['postgresql'] = {
137 140 ws {
141 deleteDir()
138 142 unstash name: 'kallithea'
139 143 sh """$activatevirtualenv
140 144 pip install --upgrade psycopg2
141 145 """
142 146 withEnv(['TEST_DB=postgresql://kallithea:kallithea@jenkins_postgresql/kallithea_test']) {
143 147 if (isUnix()) {
144 148 sh script: """$activatevirtualenv
145 149 py.test -p no:sugar --cov-config .coveragerc --junit-xml=pytest_postgresql.xml --cov=kallithea --cov-report xml
146 150 """, returnStatus: true
147 151 } else {
148 152 bat script: """$activatevirtualenv
149 153 py.test -p no:sugar --cov-config .coveragerc --junit-xml=pytest_postgresql.xml --cov=kallithea --cov-report xml
150 154 """, returnStatus: true
151 155 }
152 156 }
153 157 sh 'sed --in-place "s/\\(classname=[\'\\"]\\)/\\1POSTGRES./g" pytest_postgresql.xml'
154 158 archiveArtifacts 'pytest_postgresql.xml'
155 159 junit 'pytest_postgresql.xml'
156 160 }
157 161 }
158 162 }
159 163 stage('Tests') {
160 164 parallel pytests
161 165 }
162 166 }
General Comments 0
You need to be logged in to leave comments. Login now