Skip to content
Snippets Groups Projects
Commit a1e1af02 authored by Sebastian Pape's avatar Sebastian Pape
Browse files

Merge branch 'fix/switch_to_new_gitlab' into 'master'

Update plugins.gitlab-ci.yml, project.gitlab-ci.yml, shared_scripts.yml, shared.meta, README.md

See merge request !32
parents 0ffd064a 8ea2e06d
No related branches found
No related tags found
1 merge request!32Update plugins.gitlab-ci.yml, project.gitlab-ci.yml, shared_scripts.yml, shared.meta, README.md
# GitLab CI Unreal Files # GitLab CI Unreal Files
In this repository the shared scripts, the launcher meta data file and two sample `.gitlab-ci.yml` files are stored. If you just want an automatic compile and deploy of your project to the CAVE and the VRDev network drive, copy the `project.gitlab-ci.yml` and `launcher.meta` to your projects root, rename `project.gitlab-ci.yml` to `.gitlab-ci.yml` and set up a scheduled build in the project preferences. In this repository the shared scripts, the launcher meta data file and two sample `.gitlab-ci.yml` files are stored. If you just want an automatic compile and deploy of your project to the CAVE and the VRDev network drive, copy the `project.gitlab-ci.yml` and `launcher.meta` to your projects root, rename `project.gitlab-ci.yml` to `.gitlab-ci.yml` and set up a scheduled build in the project preferences.
If you need more information, have a look into the wiki [here](https://devhub.vr.rwth-aachen.de/VR-Group/gitlab-ci-unreal-files/wikis/Setting-up-the-Pipeline-for-your-Project)! If you need more information, have a look into the wiki [here](https://git-ce.rwth-aachen.de/vr-vis/VR-Group/unreal-development/unreal-ci/-/wikis/Setting-up-the-Pipeline-for-your-Project)!
```mermaid ```mermaid
graph LR graph LR
...@@ -55,4 +55,4 @@ The two predefined deploy stages are automatically deploying the builds (if succ ...@@ -55,4 +55,4 @@ The two predefined deploy stages are automatically deploying the builds (if succ
--- ---
### Setting up additional build machines ### Setting up additional build machines
Have a look into the wiki of this project [here](https://devhub.vr.rwth-aachen.de/VR-Group/gitlab-ci-unreal-files/wikis/Setting-up-Build-Machines) Have a look into the wiki of this project [here](https://git-ce.rwth-aachen.de/vr-vis/VR-Group/unreal-development/unreal-ci/-/wikis/Setting-up-Build-Machines)
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# Copyright (c) 2020 RWTH Aachen University, Germany, # Copyright (c) 2022 RWTH Aachen University, Germany,
# Virtual Reality & Immersive Visualisation Group. # Virtual Reality & Immersive Visualisation Group.
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# The include file can be change to either be removed or reference a specific commit. # The include file can be change to either be removed or reference a specific commit.
include: include:
- project: 'vr-group/unreal-development/unreal-ci' - project: '${UNREAL_CI_PROJECT}'
ref: master ref: master
file: '/shared_scripts.yml' file: '/shared_scripts.yml'
...@@ -27,11 +27,11 @@ include: ...@@ -27,11 +27,11 @@ include:
# only: ['web', 'schedules'] # only: ['web', 'schedules']
# extends: .Generate_Project_ # extends: .Generate_Project_
# variables: # variables:
# GEN_TEMPLATE_REPO: "https://devhub.vr.rwth-aachen.de/VR-Group/unreal-development/unrealprojecttemplate.git" # GEN_TEMPLATE_REPO: "https://git-ce.rwth-aachen.de/vr-vis/VR-Group/unreal-development/unrealprojecttemplate.git"
# GEN_TEMPLATE_BRANCH: "develop" # GEN_TEMPLATE_BRANCH: "4.26"
# GEN_DEPENDENCIES: "( # GEN_DEPENDENCIES: "(
# [master@nDisplayExtensions]='https://devhub.vr.rwth-aachen.de/VR-Group/unreal-development/ndisplayextensions.git' # [4.26@RWTHVRToolkit]='https://git-ce.rwth-aachen.de/vr-vis/VR-Group/unreal-development/Plugins/rwth-vr-toolkit.git'
# [master@UniversalLogging]='https://devhub.vr.rwth-aachen.de/VR-Group/unreal-development/universallogging.git' # [4.26@UniversalLogging]='https://git-ce.rwth-aachen.de/vr-vis/VR-Group/unreal-development/Plugins/universallogging.git'
# )" # )"
# #
# You can uncomment the deploy lines to deploy your project to the CAVE/VRDev. This only makes sense, if your plugin works # You can uncomment the deploy lines to deploy your project to the CAVE/VRDev. This only makes sense, if your plugin works
......
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# Copyright (c) 2020 RWTH Aachen University, Germany, # Copyright (c) 2022 RWTH Aachen University, Germany,
# Virtual Reality & Immersive Visualisation Group. # Virtual Reality & Immersive Visualisation Group.
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
#Reference the Gitlab CI website for this #Reference the Gitlab CI website for this
include: include:
- project: 'vr-group/unreal-development/unreal-ci' - project: '${UNREAL_CI_PROJECT}'
ref: master ref: master
file: '/shared_scripts.yml' file: '/shared_scripts.yml'
......
...@@ -11,7 +11,7 @@ variables: ...@@ -11,7 +11,7 @@ variables:
GIT_DEPTH: "1" GIT_DEPTH: "1"
NUMBER_OF_OLD_VERSIONS: 3 # number of old revisions to keep after the deploy NUMBER_OF_OLD_VERSIONS: 3 # number of old revisions to keep after the deploy
CLUSTER_ADDRESS: "login.hpc.itc.rwth-aachen.de" 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" SHARED_META_URL: "https://git-ce.rwth-aachen.de/vr-vis/VR-Group/unreal-development/unreal-ci/-/raw/master/shared.meta"
##################################Generate Project################################## ##################################Generate Project##################################
...@@ -23,7 +23,7 @@ variables: ...@@ -23,7 +23,7 @@ variables:
tags: tags:
- centos - centos
variables: variables:
GEN_TEMPLATE_REPO: "https://devhub.vr.rwth-aachen.de/VR-Group/unreal-development/unrealprojecttemplate.git" GEN_TEMPLATE_REPO: "https://git-ce.rwth-aachen.de/vr-vis/VR-Group/unreal-development/unrealprojecttemplate.git"
GEN_TEMPLATE_BRANCH: "4.26" GEN_TEMPLATE_BRANCH: "4.26"
GEN_DEPENDENCIES: "()" GEN_DEPENDENCIES: "()"
RUN_SETUP: "true" RUN_SETUP: "true"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment