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
!20
do clone with depth 1 instead of fetch
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
do clone with depth 1 instead of fetch
feature/git_strategies_update
into
develop
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
do clone with depth 1 instead of fetch
Jan Delember
requested to merge
feature/git_strategies_update
into
develop
Nov 25, 2020
Overview
0
Commits
1
Pipelines
0
Changes
1
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
600631ac
1 commit,
Nov 25, 2020
1 file
+
4
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
shared_scripts.yml
+
4
−
3
View file @ 600631ac
Edit in single-file editor
Open in Web IDE
Show full file
@@ -6,7 +6,8 @@
variables
:
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_SUBMODULE_STRATEGY
:
"
normal"
GIT_SUBMODULE_STRATEGY
:
"
recursive"
GIT_DEPTH
:
"
1"
NUMBER_OF_OLD_VERSIONS
:
3
# number of old revisions to keep after the deploy
CLUSTER_ADDRESS
:
"
login.hpc.itc.rwth-aachen.de"
SHARED_META_URL
:
"
https://devhub.vr.rwth-aachen.de/VR-Group/gitlab-ci-unreal-files/raw/master/shared.meta"
@@ -45,7 +46,7 @@ variables:
.Build_Windows_
:
stage
:
build
variables
:
GIT_STRATEGY
:
fetch
GIT_STRATEGY
:
clone
GIT_CHECKOUT
:
"
true"
CLIENT_CONFIG
:
"
Shipping"
EXTRA_ARGS
:
"
"
@@ -90,7 +91,7 @@ variables:
.Build_CentOS_
:
stage
:
build
variables
:
GIT_STRATEGY
:
fetch
GIT_STRATEGY
:
clone
GIT_CHECKOUT
:
"
true"
CLIENT_CONFIG
:
"
Shipping"
EXTRA_ARGS
:
"
"
Loading