Updating Jenkinsfile to include the wheels as artifacts

This commit is contained in:
bernat 2021-07-20 18:20:03 +02:00
parent d6185fe982
commit c479625399
1 changed files with 4 additions and 1 deletions

5
Jenkinsfile vendored
View File

@ -62,7 +62,9 @@ pipeline
always
{
archiveArtifacts 'PythonAPI/carla/dist/*.egg'
archiveArtifacts 'PythonAPI/carla/dist/*.whl'
stash includes: 'PythonAPI/carla/dist/*.egg', name: 'ubuntu_eggs'
stash includes: 'PythonAPI/carla/dist/*.whl', name: 'ubuntu_wheels'
}
}
}
@ -126,6 +128,7 @@ pipeline
steps
{
unstash name: 'ubuntu_eggs'
unstash name: 'ubuntu_wheels'
unstash name: 'ubuntu_package'
unstash name: 'ubuntu_package2'
unstash name: 'ubuntu_examples'
@ -271,7 +274,7 @@ pipeline
always
{
archiveArtifacts 'PythonAPI/carla/dist/*.egg'
stash includes: 'PythonAPI/carla/dist/*.egg', name: 'windows_eggs'
archiveArtifacts 'PythonAPI/carla/dist/*.whl'
}
}
}