Skip to content
Snippets Groups Projects
Commit 01fc545f authored by David Gilbert's avatar David Gilbert :bug:
Browse files

Update .gitlab-ci.yml file: only to rules

parent b50fa5f0
No related branches found
No related tags found
No related merge requests found
Pipeline #387467 passed
......@@ -46,14 +46,18 @@ stages:
- deploy
Generate_Project:
only: ['web', 'schedules']
rules:
- if: $CI_PIPELINE_SOURCE == "web"
- if: $CI_PIPELINE_SOURCE == "schedule"
extends: .Generate_Project_
variables:
RUN_SETUP: "false"
GEN_TEMPLATE_BRANCH: "4.27"
Build_Windows:
only: ['web', 'schedules']
rules:
- if: $CI_PIPELINE_SOURCE == "web"
- if: $CI_PIPELINE_SOURCE == "schedule"
extends: .Build_Windows_
tags:
- windows
......@@ -68,7 +72,9 @@ Build_Windows:
artifacts: true
Build_Linux:
only: ['web', 'schedules']
rules:
- if: $CI_PIPELINE_SOURCE == "web"
- if: $CI_PIPELINE_SOURCE == "schedule"
extends: .Build_Linux_
tags:
- linux
......@@ -84,14 +90,18 @@ Build_Linux:
artifacts: true
Deploy_Windows:
only: ['web', 'schedules']
rules:
- if: $CI_PIPELINE_SOURCE == "web"
- if: $CI_PIPELINE_SOURCE == "schedule"
extends: .Deploy_VRDev_
needs:
- job: "Build_Windows"
artifacts: true
Deploy_CAVE:
only: ['web', 'schedules']
rules:
- if: $CI_PIPELINE_SOURCE == "web"
- if: $CI_PIPELINE_SOURCE == "schedule"
extends: .Deploy_CAVE_
needs:
- job: "Build_Linux"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment