##// END OF EJS Templates
jenkinsfile: delete all old files in the workspace...
domruf -
r6507:15a12f2a default
parent child Browse files
Show More
@@ -64,6 +64,7 b' node {'
64 def pytests = [:]
64 def pytests = [:]
65 pytests['sqlite'] = {
65 pytests['sqlite'] = {
66 ws {
66 ws {
67 deleteDir()
67 unstash name: 'kallithea'
68 unstash name: 'kallithea'
68 if (isUnix()) {
69 if (isUnix()) {
69 sh script: """$activatevirtualenv
70 sh script: """$activatevirtualenv
@@ -89,6 +90,7 b' node {'
89 if (isUnix()) {
90 if (isUnix()) {
90 pytests['de'] = {
91 pytests['de'] = {
91 ws {
92 ws {
93 deleteDir()
92 unstash name: 'kallithea'
94 unstash name: 'kallithea'
93 withEnv(['LANG=de_DE.UTF-8',
95 withEnv(['LANG=de_DE.UTF-8',
94 'LANGUAGE=de',
96 'LANGUAGE=de',
@@ -113,6 +115,7 b' node {'
113 }
115 }
114 pytests['mysql'] = {
116 pytests['mysql'] = {
115 ws {
117 ws {
118 deleteDir()
116 unstash name: 'kallithea'
119 unstash name: 'kallithea'
117 sh """$activatevirtualenv
120 sh """$activatevirtualenv
118 pip install --upgrade MySQL-python
121 pip install --upgrade MySQL-python
@@ -135,6 +138,7 b' node {'
135 }
138 }
136 pytests['postgresql'] = {
139 pytests['postgresql'] = {
137 ws {
140 ws {
141 deleteDir()
138 unstash name: 'kallithea'
142 unstash name: 'kallithea'
139 sh """$activatevirtualenv
143 sh """$activatevirtualenv
140 pip install --upgrade psycopg2
144 pip install --upgrade psycopg2
General Comments 0
You need to be logged in to leave comments. Login now