Adding plugins to the package

This commit is contained in:
bernat 2020-12-22 11:08:27 +01:00
parent e8e978b8d8
commit 7374804542
3 changed files with 8 additions and 1 deletions

6
Jenkinsfile vendored
View File

@ -54,6 +54,7 @@ pipeline
sh 'make LibCarla' sh 'make LibCarla'
sh 'make PythonAPI ARGS="--python-version=3.7,2"' sh 'make PythonAPI ARGS="--python-version=3.7,2"'
sh 'make CarlaUE4Editor ARGS="--carsim"' sh 'make CarlaUE4Editor ARGS="--carsim"'
sh 'make plugins'
sh 'make examples' sh 'make examples'
} }
post post
@ -257,6 +258,10 @@ pipeline
call ../setEnv64.bat call ../setEnv64.bat
make CarlaUE4Editor ARGS="--carsim" make CarlaUE4Editor ARGS="--carsim"
""" """
bat """
call ../setEnv64.bat
make plugins
"""
} }
post post
{ {
@ -287,7 +292,6 @@ pipeline
""" """
bat """ bat """
call ../setEnv64.bat call ../setEnv64.bat
make package ARGS="--packages=AdditionalMaps --target-archive=AdditionalMaps --clean-intermediate"
make package ARGS="--packages=AdditionalMaps,Town06_Opt,Town07_Opt,Town10HD_Opt --target-archive=AdditionalMaps --clean-intermediate" make package ARGS="--packages=AdditionalMaps,Town06_Opt,Town07_Opt,Town10HD_Opt --target-archive=AdditionalMaps --clean-intermediate"
""" """
} }

View File

@ -175,6 +175,7 @@ if %DO_COPY_FILES%==true (
echo f | xcopy /y "!XCOPY_FROM!PythonAPI\carla\dist\*.egg" "!XCOPY_TO!PythonAPI\carla\dist\" echo f | xcopy /y "!XCOPY_FROM!PythonAPI\carla\dist\*.egg" "!XCOPY_TO!PythonAPI\carla\dist\"
echo f | xcopy /y /s "!XCOPY_FROM!PythonAPI\carla\data\*" "!XCOPY_TO!PythonAPI\carla\data\" echo f | xcopy /y /s "!XCOPY_FROM!PythonAPI\carla\data\*" "!XCOPY_TO!PythonAPI\carla\data\"
echo d | xcopy /y /s "!XCOPY_FROM!Co-Simulation" "!XCOPY_TO!Co-Simulation" echo d | xcopy /y /s "!XCOPY_FROM!Co-Simulation" "!XCOPY_TO!Co-Simulation"
echo d | xcopy /y /s "!XCOPY_FROM!Plugins" "!XCOPY_TO!Plugins"
echo d | xcopy /y /s "!XCOPY_FROM!PythonAPI\carla\agents" "!XCOPY_TO!PythonAPI\carla\agents" echo d | xcopy /y /s "!XCOPY_FROM!PythonAPI\carla\agents" "!XCOPY_TO!PythonAPI\carla\agents"
echo f | xcopy /y "!XCOPY_FROM!PythonAPI\carla\scene_layout.py" "!XCOPY_TO!PythonAPI\carla\" echo f | xcopy /y "!XCOPY_FROM!PythonAPI\carla\scene_layout.py" "!XCOPY_TO!PythonAPI\carla\"
echo f | xcopy /y "!XCOPY_FROM!PythonAPI\carla\requirements.txt" "!XCOPY_TO!PythonAPI\carla\" echo f | xcopy /y "!XCOPY_FROM!PythonAPI\carla\requirements.txt" "!XCOPY_TO!PythonAPI\carla\"

View File

@ -163,6 +163,8 @@ if ${DO_CARLA_RELEASE} ; then
copy_if_changed "./Co-Simulation/" "${DESTINATION}/Co-Simulation/" copy_if_changed "./Co-Simulation/" "${DESTINATION}/Co-Simulation/"
copy_if_changed "./Plugins/" "${DESTINATION}/Plugins/"
copy_if_changed "./Unreal/CarlaUE4/Content/Carla/HDMaps/*.pcd" "${DESTINATION}/HDMaps/" copy_if_changed "./Unreal/CarlaUE4/Content/Carla/HDMaps/*.pcd" "${DESTINATION}/HDMaps/"
copy_if_changed "./Unreal/CarlaUE4/Content/Carla/HDMaps/Readme.md" "${DESTINATION}/HDMaps/README" copy_if_changed "./Unreal/CarlaUE4/Content/Carla/HDMaps/Readme.md" "${DESTINATION}/HDMaps/README"