Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
RWTH VR Toolkit
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
Container 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
Plugins
RWTH VR Toolkit
Commits
673359eb
Commit
673359eb
authored
3 weeks ago
by
David Gilbert
Browse files
Options
Downloads
Patches
Plain Diff
ci: also adds input variables to CI
parent
72232ee1
Branches
dev/5.4
Branches containing commit
Tags
Tags containing commit
1 merge request
!120
UE5.4-2024.1
Pipeline
#606657
passed
3 weeks ago
Stage: analyze
Stage: generate
Stage: build
Changes
1
Pipelines
2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+30
-14
30 additions, 14 deletions
.gitlab-ci.yml
with
30 additions
and
14 deletions
.gitlab-ci.yml
+
30
−
14
View file @
673359eb
...
...
@@ -3,6 +3,30 @@
# Virtual Reality & Immersive Visualisation Group.
#-------------------------------------------------------------------------------
spec
:
inputs
:
unreal_version
:
description
:
The Unreal Engine version in the form of "major.minor"
type
:
string
regex
:
\d+\.\d+
default
:
"
5.4"
build_type
:
description
:
The game build type.
type
:
string
options
:
[
"
DebugGame"
,
"
Shipping"
]
default
:
"
DebugGame"
number_of_old_versions
:
description
:
How many successful pipeline builds of this branch should be stored on the cluster.
type
:
number
default
:
3
custom_ndisplay_config
:
description
:
Custom nDisplay config stored on the cluster filesystem.
type
:
string
default
:
"
"
---
# The include file can be change to either be removed or reference a specific commit.
include
:
...
...
@@ -41,8 +65,9 @@ include:
# Use the CUSTOM_NDISPLAY_CONFIG variable in case you need a custom ndisplay config. These are always located in /home/vrdemo/configs/ndisplay.
variables
:
UNREAL_VERSION
:
"
5.4"
CUSTOM_NDISPLAY_CONFIG
:
"
aixcave_5_4.ndisplay"
UNREAL_VERSION
:
$[[ inputs.unreal_version ]]
NUMBER_OF_OLD_VERSIONS
:
$[[ inputs.number_of_old_versions ]]
CUSTOM_NDISPLAY_CONFIG
:
$[[ inputs.custom_ndisplay_config ]]
stages
:
-
analyze
...
...
@@ -113,7 +138,7 @@ Build_Windows:
GIT_STRATEGY
:
none
GIT_CHECKOUT
:
"
false"
# CLIENT_CONFIG: "Shipping"
CLIENT_CONFIG
:
"
DebugGame"
CLIENT_CONFIG
:
$[[ inputs.build_type ]]
needs
:
-
job
:
"
Generate_Project"
artifacts
:
true
...
...
@@ -134,7 +159,7 @@ Build_Linux:
GIT_STRATEGY
:
none
GIT_CHECKOUT
:
"
false"
# CLIENT_CONFIG: "Shipping"
CLIENT_CONFIG
:
"
DebugGame"
CLIENT_CONFIG
:
$[[ inputs.build_type ]]
needs
:
-
job
:
"
Generate_Project"
artifacts
:
true
...
...
@@ -147,15 +172,6 @@ Build_Linux_Without_Cluster:
-
job
:
"
Generate_Project_Without_Cluster"
artifacts
:
true
# Deploys to vrdev
.Deploy_Windows
:
rules
:
-
if
:
$CI_PIPELINE_SOURCE == "web"
-
if
:
$CI_PIPELINE_SOURCE == "schedule"
extends
:
.Deploy_VRDev_
needs
:
-
job
:
"
Build_Windows"
artifacts
:
true
# Deploys to vrdemo instead of av006de. Use extends: .Deploy_CAVE_ to deploy to legacy av006de
Deploy_CAVE
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment