Skip to content
Snippets Groups Projects
Commit 5779d2c5 authored by Sebastian Pape's avatar Sebastian Pape
Browse files

Merge branch 'feature/adapt_to_new_tags' into 'master'

Adapting to new tags of the runners

See merge request !33
parents a1e1af02 e2fb6bd5
No related branches found
No related tags found
1 merge request!33Adapting to new tags of the runners
...@@ -61,11 +61,11 @@ Build_Windows: ...@@ -61,11 +61,11 @@ Build_Windows:
- job: "Generate_Project" - job: "Generate_Project"
artifacts: true artifacts: true
Build_CentOS: Build_Linux:
only: ['web', 'schedules'] only: ['web', 'schedules']
extends: .Build_CentOS_ extends: .Build_Linux_
tags: tags:
- centos - linux
- unreal-4.26 - unreal-4.26
variables: variables:
GIT_STRATEGY: none GIT_STRATEGY: none
...@@ -76,16 +76,17 @@ Build_CentOS: ...@@ -76,16 +76,17 @@ Build_CentOS:
- job: "Generate_Project" - job: "Generate_Project"
artifacts: true artifacts: true
#Deploy_CAVE: #Deploy_Windows:
# only: ['web', 'schedules'] # only: ['web', 'schedules']
# extends: .Deploy_CAVE_ # extends: .Deploy_VRDev_
# needs: # needs:
# - job: "Build_CentOS" # - job: "Build_Windows"
# artifacts: true # artifacts: true
# #
#Deploy_Windows: #Deploy_CAVE:
# only: ['web', 'schedules'] # only: ['web', 'schedules']
# extends: .Deploy_VRDev_ # extends: .Deploy_CAVE_
# needs: # needs:
# - job: "Build_Windows" # - job: "Build_Linux"
# artifacts: true # artifacts: true
#
...@@ -36,24 +36,27 @@ Build_Windows: ...@@ -36,24 +36,27 @@ Build_Windows:
CLIENT_CONFIG: "DebugGame" CLIENT_CONFIG: "DebugGame"
# CLIENT_CONFIG: "Shipping" # CLIENT_CONFIG: "Shipping"
Build_CentOS: Build_Linux:
only: ['web', 'schedules'] only: ['web', 'schedules']
extends: .Build_CentOS_ extends: .Build_Linux_
tags: tags:
- centos - linux
- unreal-4.26 - unreal-4.26
variables: variables:
CLIENT_CONFIG: "DebugGame" CLIENT_CONFIG: "DebugGame"
# CLIENT_CONFIG: "Shipping" # CLIENT_CONFIG: "Shipping"
Deploy_Windows:
only: ['web', 'schedules']
extends: .Deploy_VRDev_
needs:
- job: "Build_Windows"
artifacts: true
Deploy_CAVE: Deploy_CAVE:
only: ['web', 'schedules'] only: ['web', 'schedules']
extends: .Deploy_CAVE_ extends: .Deploy_CAVE_
dependencies: needs:
- Build_CentOS - job: "Build_Linux"
artifacts: true
Deploy_Windows:
only: ['web', 'schedules']
extends: .Deploy_VRDev_
dependencies:
- Build_Windows
...@@ -21,7 +21,8 @@ variables: ...@@ -21,7 +21,8 @@ variables:
- web - web
- schedules - schedules
tags: tags:
- centos - linux
- project-generation
variables: variables:
GEN_TEMPLATE_REPO: "https://git-ce.rwth-aachen.de/vr-vis/VR-Group/unreal-development/unrealprojecttemplate.git" GEN_TEMPLATE_REPO: "https://git-ce.rwth-aachen.de/vr-vis/VR-Group/unreal-development/unrealprojecttemplate.git"
GEN_TEMPLATE_BRANCH: "4.26" GEN_TEMPLATE_BRANCH: "4.26"
...@@ -58,7 +59,7 @@ variables: ...@@ -58,7 +59,7 @@ variables:
EXTRA_ARGS: "" EXTRA_ARGS: ""
tags: tags:
- windows - windows
- unreal-4.22 - unreal-4.26
script: script:
# Clean folder before building # Clean folder before building
- git clean -qxfdf; git submodule foreach --quiet --recursive git clean -qxfdf - git clean -qxfdf; git submodule foreach --quiet --recursive git clean -qxfdf
...@@ -97,7 +98,7 @@ variables: ...@@ -97,7 +98,7 @@ variables:
##################################Linux################################## ##################################Linux##################################
.Build_CentOS_: .Build_Linux_:
stage: build stage: build
variables: variables:
GIT_STRATEGY: clone GIT_STRATEGY: clone
...@@ -105,8 +106,8 @@ variables: ...@@ -105,8 +106,8 @@ variables:
CLIENT_CONFIG: "Shipping" CLIENT_CONFIG: "Shipping"
EXTRA_ARGS: "" EXTRA_ARGS: ""
tags: tags:
- centos - linux
- unreal-4.22 - unreal-4.26
script: script:
# Clean folder before building # Clean folder before building
- git clean -qxfdf && git submodule foreach --quiet --recursive git clean -qxfdf - git clean -qxfdf && git submodule foreach --quiet --recursive git clean -qxfdf
...@@ -149,7 +150,7 @@ variables: ...@@ -149,7 +150,7 @@ variables:
.Deploy_VRDev_: .Deploy_VRDev_:
stage: deploy stage: deploy
tags: tags:
- centos - linux
- networkdeploy - networkdeploy
allow_failure: true allow_failure: true
script: script:
...@@ -170,7 +171,7 @@ variables: ...@@ -170,7 +171,7 @@ variables:
.Deploy_CAVE_: .Deploy_CAVE_:
stage: deploy stage: deploy
tags: tags:
- centos - linux
- networkdeploy - networkdeploy
allow_failure: true allow_failure: true
script: script:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment