From 9b4ea2d9996ce5ea41934b2f68018b0be8c54e8d Mon Sep 17 00:00:00 2001 From: David Gilbert <david.gilbert@rwth-aachen.de> Date: Tue, 23 Jan 2024 13:15:39 +0100 Subject: [PATCH] ci: build without cluster module and with --- .gitlab-ci.yml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e38daa8e..798c4c43 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -78,8 +78,16 @@ Generate_Project: variables: RUN_SETUP: "false" GEN_DEPENDENCIES: "( - [master@UnrealDTrackPlugin]='https://github.com/VRGroupRWTH/UnrealDTrackPlugin.git')" + [master@UnrealDTrackPlugin]='https://github.com/VRGroupRWTH/UnrealDTrackPlugin.git' + [dev/5.3@RWTHVRCluster]='https://git-ce.rwth-aachen.de/vr-vis/VR-Group/unreal-development/plugins/rwth-vr-cluster-plugin.git' + )" +Generate_Project_Without_Cluster: + extends: Generate_Project + variables: + GEN_DEPENDENCIES: "( + [master@UnrealDTrackPlugin]='https://github.com/VRGroupRWTH/UnrealDTrackPlugin.git' + )" Build_Windows: rules: @@ -122,6 +130,12 @@ Build_Linux: - job: "Generate_Project" artifacts: true +Build_Linux_Without_Cluster: + extends: Build_Linux + needs: + - job: "Generate_Project_Without_Cluster" + artifacts: true + Deploy_Windows: rules: - if: $CI_PIPELINE_SOURCE == "web" -- GitLab