Archive Python eggs on Jenkins

This commit is contained in:
nsubiron 2018-10-16 11:18:12 +02:00
parent 98a90496f6
commit 39b32d20c0
1 changed files with 5 additions and 0 deletions

5
Jenkinsfile vendored
View File

@ -24,6 +24,11 @@ pipeline {
sh 'make PythonAPI'
sh 'make CarlaUE4Editor'
}
post {
always {
archiveArtifacts 'PythonAPI/dist/*.egg'
}
}
}
stage('Unit Tests') {