Add additional maps to be tested

This commit is contained in:
bernat 2021-06-16 11:04:24 +02:00
parent 5c3e9c8b09
commit 7a4339b5aa
1 changed files with 3 additions and 0 deletions

3
Jenkinsfile vendored
View File

@ -102,6 +102,7 @@ pipeline
{
archiveArtifacts 'Dist/*.tar.gz'
stash includes: 'Dist/CARLA*.tar.gz', name: 'ubuntu_package'
stash includes: 'Dist/AdditionalMaps*.tar.gz', name: 'ubuntu_package2'
stash includes: 'Examples/', name: 'ubuntu_examples'
}
success
@ -126,8 +127,10 @@ pipeline
{
unstash name: 'ubuntu_eggs'
unstash name: 'ubuntu_package'
unstash name: 'ubuntu_package2'
unstash name: 'ubuntu_examples'
sh 'tar -xvzf Dist/CARLA*.tar.gz -C Dist/'
sh 'tar -xvzf Dist/AdditionalMaps*.tar.gz -C Dist/'
sh 'DISPLAY= ./Dist/CarlaUE4.sh -nullrhi -RenderOffScreen --carla-rpc-port=3654 --carla-streaming-port=0 -nosound > CarlaUE4.log &'
sh 'make smoke_tests ARGS="--xml --python-version=3.7,2"'
sh 'make run-examples ARGS="localhost 3654"'