Avoid additional maps in smoke test by now

This commit is contained in:
bernatx 2021-07-30 10:01:45 +02:00
parent d4ead18adc
commit 0d3bfe15c2
1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

@ -104,7 +104,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: 'Dist/AdditionalMaps*.tar.gz', name: 'ubuntu_package2'
stash includes: 'Examples/', name: 'ubuntu_examples'
}
success
@ -130,10 +130,10 @@ pipeline
unstash name: 'ubuntu_eggs'
unstash name: 'ubuntu_wheels'
unstash name: 'ubuntu_package'
unstash name: 'ubuntu_package2'
// 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 '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"'