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

feature(ci): Run build on MR events, tags and on default branch

parent fa09eeb9
Branches
No related tags found
1 merge request!80UE5.3-2023.1-rc2
Pipeline #346337 passed
......@@ -71,6 +71,9 @@ Generate_Project:
rules:
- if: $CI_PIPELINE_SOURCE == "web"
- if: $CI_PIPELINE_SOURCE == "schedule"
- if: $CI_PIPELINE_SOURCE == 'merge_request_event'
- if: $CI_COMMIT_TAG
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
extends: .Generate_Project_
variables:
RUN_SETUP: "false"
......@@ -82,6 +85,9 @@ Build_Windows:
rules:
- if: $CI_PIPELINE_SOURCE == "web"
- if: $CI_PIPELINE_SOURCE == "schedule"
- if: $CI_PIPELINE_SOURCE == 'merge_request_event'
- if: $CI_COMMIT_TAG
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
extends: .Build_Windows_
tags:
- windows
......@@ -99,6 +105,9 @@ Build_Linux:
rules:
- if: $CI_PIPELINE_SOURCE == "web"
- if: $CI_PIPELINE_SOURCE == "schedule"
- if: $CI_PIPELINE_SOURCE == 'merge_request_event'
- if: $CI_COMMIT_TAG
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
extends: .Build_Linux_
tags:
- linux
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment