Upgrading windows scripts to 4.24
This commit is contained in:
parent
ad4fea3604
commit
27e3733020
|
@ -35,7 +35,7 @@ pipeline
|
||||||
agent { label "ubuntu && build && ${JOB_ID}" }
|
agent { label "ubuntu && build && ${JOB_ID}" }
|
||||||
environment
|
environment
|
||||||
{
|
{
|
||||||
UE4_ROOT = '/home/jenkins/UnrealEngine_4.22'
|
UE4_ROOT = '/home/jenkins/UnrealEngine_4.24'
|
||||||
}
|
}
|
||||||
stages
|
stages
|
||||||
{
|
{
|
||||||
|
@ -201,7 +201,7 @@ pipeline
|
||||||
agent { label "windows && build && ${JOB_ID}" }
|
agent { label "windows && build && ${JOB_ID}" }
|
||||||
environment
|
environment
|
||||||
{
|
{
|
||||||
UE4_ROOT = 'C:\\Program Files\\Epic Games\\UE_4.22'
|
UE4_ROOT = 'C:\\Program Files\\Epic Games\\UE_4.24'
|
||||||
}
|
}
|
||||||
stages
|
stages
|
||||||
{
|
{
|
||||||
|
|
|
@ -23,7 +23,7 @@ set DO_COPY_FILES=true
|
||||||
set DO_TARBALL=true
|
set DO_TARBALL=true
|
||||||
set DO_CLEAN=false
|
set DO_CLEAN=false
|
||||||
|
|
||||||
set UE_VERSION=4.22
|
set UE_VERSION=4.24
|
||||||
set PACKAGES=Carla
|
set PACKAGES=Carla
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -26,14 +26,14 @@ launch-only:
|
||||||
@"${CARLA_BUILD_TOOLS_FOLDER}/BuildCarlaUE4.bat" --launch
|
@"${CARLA_BUILD_TOOLS_FOLDER}/BuildCarlaUE4.bat" --launch
|
||||||
|
|
||||||
package: PythonAPI
|
package: PythonAPI
|
||||||
@"${CARLA_BUILD_TOOLS_FOLDER}/Package.bat" --ue-version 4.22 $(ARGS)
|
@"${CARLA_BUILD_TOOLS_FOLDER}/Package.bat" --ue-version 4.24 $(ARGS)
|
||||||
|
|
||||||
docs:
|
docs:
|
||||||
@doxygen
|
@doxygen
|
||||||
@echo "Documentation index at ./Doxygen/html/index.html"
|
@echo "Documentation index at ./Doxygen/html/index.html"
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
@"${CARLA_BUILD_TOOLS_FOLDER}/Package.bat" --clean --ue-version 4.22
|
@"${CARLA_BUILD_TOOLS_FOLDER}/Package.bat" --clean --ue-version 4.24
|
||||||
@"${CARLA_BUILD_TOOLS_FOLDER}/BuildCarlaUE4.bat" --clean
|
@"${CARLA_BUILD_TOOLS_FOLDER}/BuildCarlaUE4.bat" --clean
|
||||||
|
|
||||||
@"${CARLA_BUILD_TOOLS_FOLDER}/BuildPythonAPI.bat" --clean
|
@"${CARLA_BUILD_TOOLS_FOLDER}/BuildPythonAPI.bat" --clean
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
ARG UE4_V=4.22.2
|
ARG UE4_V=4.24.3
|
||||||
FROM adamrehn/ue4-source:${UE4_V}-opengl
|
FROM adamrehn/ue4-source:${UE4_V}-opengl
|
||||||
|
|
||||||
USER root
|
USER root
|
||||||
|
|
Loading…
Reference in New Issue