Adding plugins to the package
This commit is contained in:
parent
e8e978b8d8
commit
7374804542
|
@ -54,6 +54,7 @@ pipeline
|
|||
sh 'make LibCarla'
|
||||
sh 'make PythonAPI ARGS="--python-version=3.7,2"'
|
||||
sh 'make CarlaUE4Editor ARGS="--carsim"'
|
||||
sh 'make plugins'
|
||||
sh 'make examples'
|
||||
}
|
||||
post
|
||||
|
@ -257,6 +258,10 @@ pipeline
|
|||
call ../setEnv64.bat
|
||||
make CarlaUE4Editor ARGS="--carsim"
|
||||
"""
|
||||
bat """
|
||||
call ../setEnv64.bat
|
||||
make plugins
|
||||
"""
|
||||
}
|
||||
post
|
||||
{
|
||||
|
@ -287,7 +292,6 @@ pipeline
|
|||
"""
|
||||
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"
|
||||
"""
|
||||
}
|
||||
|
|
|
@ -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 /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!Plugins" "!XCOPY_TO!Plugins"
|
||||
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\requirements.txt" "!XCOPY_TO!PythonAPI\carla\"
|
||||
|
|
|
@ -163,6 +163,8 @@ if ${DO_CARLA_RELEASE} ; then
|
|||
|
||||
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/Readme.md" "${DESTINATION}/HDMaps/README"
|
||||
|
||||
|
|
Loading…
Reference in New Issue