Upgrading windows scripts to 4.24

This commit is contained in:
bernat 2020-03-19 17:26:35 +01:00
parent ad4fea3604
commit 27e3733020
4 changed files with 6 additions and 6 deletions

4
Jenkinsfile vendored
View File

@ -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
{ {

View File

@ -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

View File

@ -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

View File

@ -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