Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Universal Logging Plugin
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
Plugins
Universal Logging Plugin
Commits
5144397f
Commit
5144397f
authored
Feb 26, 2021
by
mbellgardt
Browse files
Options
Downloads
Patches
Plain Diff
Add .yml for CI
parent
e82dda78
No related branches found
No related tags found
2 merge requests
!16
Develop
,
!9
Fix unique pointer problem properly
Pipeline
#167328
failed
Feb 26, 2021
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+83
-0
83 additions, 0 deletions
.gitlab-ci.yml
with
83 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
+
83
−
0
View file @
5144397f
#-------------------------------------------------------------------------------
# Copyright (c) 2020 RWTH Aachen University, Germany,
# Virtual Reality & Immersive Visualisation Group.
#-------------------------------------------------------------------------------
# The include file can be change to either be removed or reference a specific commit.
include
:
-
project
:
'
vr-group/unreal-development/unreal-ci'
ref
:
feature/plugin_project_generation
file
:
'
/shared_scripts.yml'
# In this file you are able to configure your plugins pipeline.
# If you want to customize something, either overwrite things that are defined in the shared_scripts repository,
# or remove the "extends" and write your own scripts
#
# If you want your pipeline to run on every commit, just remove the "only" blocks. Keep in mind, that a build
# can take some time.
#
# If you want to alter the unreal-building process two variables are defined for either changing the CLIENT_CONFIG or
# for adding EXTRA_ARGS to the building process
#
# For the generate stage, you can specify needed dependencies in GEN_DEPENDENCIES with [Branch@PluginFolder] as key
# Example:
#
# Generate_Project:
# only: ['web', 'schedules']
# extends: .Generate_Project_
# variables:
# GEN_TEMPLATE_REPO: "https://devhub.vr.rwth-aachen.de/VR-Group/unreal-development/unrealprojecttemplate.git"
# 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/unreal-cave-overlay.git'
# )"
#
# You can uncomment the deploy lines to deploy your project to the CAVE/VRDev. This only makes sense, if your plugin works
# with a generated project.
stages
:
-
generate
-
build
# - deploy
Generate_Project
:
only
:
[
'
web'
,
'
schedules'
]
extends
:
.Generate_Project_
Build_Windows
:
only
:
[
'
web'
,
'
schedules'
]
extends
:
.Build_Windows_
variables
:
GIT_STRATEGY
:
none
GIT_CHECKOUT
:
"
false"
#CLIENT_CONFIG: "DebugGame"
needs
:
-
job
:
"
Generate_Project"
artifacts
:
true
Build_CentOS
:
only
:
[
'
web'
,
'
schedules'
]
extends
:
.Build_CentOS_
variables
:
GIT_STRATEGY
:
none
GIT_CHECKOUT
:
"
false"
#CLIENT_CONFIG: "DebugGame"
needs
:
-
job
:
"
Generate_Project"
artifacts
:
true
#Deploy_CAVE:
# only: ['web', 'schedules']
# extends: .Deploy_CAVE_
# needs:
# - job: "Build_CentOS"
# artifacts: true
#
#Deploy_Windows:
# only: ['web', 'schedules']
# extends: .Deploy_VRDev_
# needs:
# - job: "Build_Windows"
# artifacts: true
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