Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
CI Scripts
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LuFG VR VIS
VR-Group
Unreal-Development
CI Scripts
Merge requests
!27
Master
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Master
master
into
develop
Overview
0
Commits
10
Pipelines
0
Changes
2
Merged
Master
Jan Delember
requested to merge
master
into
develop
Jul 2, 2021
Overview
0
Commits
10
Pipelines
0
Changes
2
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
d3681e92
10 commits,
Jul 2, 2021
2 files
+
25
−
12
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
plugins.gitlab-ci.yml
+
12
−
4
View file @ d3681e92
Edit in single-file editor
Open in Web IDE
Show full file
@@ -7,7 +7,7 @@
include
:
-
project
:
'
vr-group/unreal-development/unreal-ci'
ref
:
feature/plugin_project_generation
ref
:
master
file
:
'
/shared_scripts.yml'
# In this file you are able to configure your plugins pipeline.
@@ -31,7 +31,7 @@ include:
# GEN_TEMPLATE_BRANCH: "develop"
# GEN_DEPENDENCIES: "(
# [master@nDisplayExtensions]='https://devhub.vr.rwth-aachen.de/VR-Group/unreal-development/ndisplayextensions.git'
# [master@
CaveOverlay
]='https://devhub.vr.rwth-aachen.de/VR-Group/unreal-development/un
real-cave-overlay
.git'
# [master@
UniversalLogging
]='https://devhub.vr.rwth-aachen.de/VR-Group/unreal-development/un
iversallogging
.git'
# )"
#
# You can uncomment the deploy lines to deploy your project to the CAVE/VRDev. This only makes sense, if your plugin works
@@ -49,10 +49,14 @@ Generate_Project:
Build_Windows
:
only
:
[
'
web'
,
'
schedules'
]
extends
:
.Build_Windows_
tags
:
-
windows
-
unreal-4.26
variables
:
GIT_STRATEGY
:
none
GIT_CHECKOUT
:
"
false"
#CLIENT_CONFIG: "DebugGame"
# CLIENT_CONFIG: "Shipping"
CLIENT_CONFIG
:
"
DebugGame"
needs
:
-
job
:
"
Generate_Project"
artifacts
:
true
@@ -60,10 +64,14 @@ Build_Windows:
Build_CentOS
:
only
:
[
'
web'
,
'
schedules'
]
extends
:
.Build_CentOS_
tags
:
-
centos
-
unreal-4.26
variables
:
GIT_STRATEGY
:
none
GIT_CHECKOUT
:
"
false"
#CLIENT_CONFIG: "DebugGame"
# CLIENT_CONFIG: "Shipping"
CLIENT_CONFIG
:
"
DebugGame"
needs
:
-
job
:
"
Generate_Project"
artifacts
:
true
Loading