From 7926badb6a0b5f151ca7443dcd743197d6a549f5 Mon Sep 17 00:00:00 2001 From: Sebastian Pape <pape@vr.rwth-aachen.de> Date: Wed, 30 Nov 2022 14:06:07 +0100 Subject: [PATCH] Adapt to new tags --- .gitlab-ci.yml | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f049d0d8..6dcdca13 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -45,8 +45,6 @@ stages: Generate_Project: only: ['web', 'schedules'] extends: .Generate_Project_ - variables: - RUN_SETUP: "false" Build_Windows: only: ['web', 'schedules'] @@ -63,11 +61,11 @@ Build_Windows: - job: "Generate_Project" artifacts: true -Build_CentOS: +Build_Linux: only: ['web', 'schedules'] - extends: .Build_CentOS_ + extends: .Build_Linux_ tags: - - centos + - linux - unreal-4.26 variables: GIT_STRATEGY: none @@ -77,17 +75,18 @@ Build_CentOS: 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 + +Deploy_CAVE: + only: ['web', 'schedules'] + extends: .Deploy_CAVE_ + needs: + - job: "Build_Linux" artifacts: true + -- GitLab