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
Commits
5f585ba9
Commit
5f585ba9
authored
1 month ago
by
Kris Tabea Helwig
Browse files
Options
Downloads
Patches
Plain Diff
Introduces ci inputs
parent
cf6987f2
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
shared_scripts.yml
+22
-3
22 additions, 3 deletions
shared_scripts.yml
with
22 additions
and
3 deletions
shared_scripts.yml
+
22
−
3
View file @
5f585ba9
...
@@ -3,17 +3,36 @@
...
@@ -3,17 +3,36 @@
# Virtual Reality & Immersive Visualisation Group.
# 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.5"
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
:
"
"
---
variables
:
variables
:
GIT_STRATEGY
:
none
# we disable fetch, clone or checkout for every job
GIT_STRATEGY
:
none
# we disable fetch, clone or checkout for every job
GIT_CHECKOUT
:
"
false"
# as we only want to checkout and fetch in the preperation stage
GIT_CHECKOUT
:
"
false"
# as we only want to checkout and fetch in the preperation stage
GIT_SUBMODULE_STRATEGY
:
"
recursive"
GIT_SUBMODULE_STRATEGY
:
"
recursive"
GIT_CLEAN_FLAGS
:
none
GIT_CLEAN_FLAGS
:
none
GIT_DEPTH
:
"
1"
GIT_DEPTH
:
"
1"
NUMBER_OF_OLD_VERSIONS
:
3
# number of old revisions to keep after the deploy
NUMBER_OF_OLD_VERSIONS
:
$[[ inputs.number_of_old_versions ]]
# number of old revisions to keep after the deploy
CLUSTER_ADDRESS
:
"
ngm01.hpc.itc.rwth-aachen.de"
# Needs to be ngm01 as all other nodes require MFA
CLUSTER_ADDRESS
:
"
ngm01.hpc.itc.rwth-aachen.de"
# Needs to be ngm01 as all other nodes require MFA
SHARED_META_URL
:
"
https://git-ce.rwth-aachen.de/vr-vis/VR-Group/unreal-development/unreal-ci/-/raw/master/shared.meta"
SHARED_META_URL
:
"
https://git-ce.rwth-aachen.de/vr-vis/VR-Group/unreal-development/unreal-ci/-/raw/master/shared.meta"
UNREAL_VERSION
:
"
5.3"
UNREAL_VERSION
:
$[[ inputs.unreal_version ]]
CUSTOM_NDISPLAY_CONFIG
:
"
"
CUSTOM_NDISPLAY_CONFIG
:
$[[ inputs.custom_ndisplay_config ]]
##################################Generate Project##################################
##################################Generate Project##################################
...
...
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