ci(GODT-2717): Create a job that will run on schedule

This commit is contained in:
Gjorgji Slamkov
2023-08-10 12:19:59 +00:00
parent ccb9b7f81c
commit c90248920a
4 changed files with 43 additions and 0 deletions

View File

@ -47,6 +47,16 @@ stages:
allow_failure: true
- when: never
.rules-branch-manual-scheduled-and-test-branch-always:
rules:
- if: $CI_PIPELINE_SOURCE == "schedule" || $CI_COMMIT_BRANCH =~ /(test\/)/
when: always
allow_failure: false
- if: $CI_COMMIT_BRANCH
when: manual
allow_failure: true
- when: never
# ENV
.env-windows:
before_script:
@ -172,6 +182,13 @@ test-integration-race:
script:
- make test-integration-race
test-integration-nightly:
extends:
- test-integration
- .rules-branch-manual-scheduled-and-test-branch-always
script:
- make test-integration-nightly
test-windows:
extends:
- .env-windows