2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
FactoryBot.define do
|
2017-08-17 22:00:37 +05:30
|
|
|
factory :ci_pipeline_schedule, class: Ci::PipelineSchedule do
|
|
|
|
cron '0 1 * * *'
|
|
|
|
cron_timezone Gitlab::Ci::CronParser::VALID_SYNTAX_SAMPLE_TIME_ZONE
|
|
|
|
ref 'master'
|
|
|
|
active true
|
|
|
|
description "pipeline schedule"
|
2017-09-10 17:25:29 +05:30
|
|
|
project
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2019-09-04 21:01:54 +05:30
|
|
|
trait :every_minute do
|
|
|
|
cron '*/1 * * * *'
|
|
|
|
cron_timezone Gitlab::Ci::CronParser::VALID_SYNTAX_SAMPLE_TIME_ZONE
|
|
|
|
end
|
|
|
|
|
|
|
|
trait :hourly do
|
|
|
|
cron '* */1 * * *'
|
|
|
|
cron_timezone Gitlab::Ci::CronParser::VALID_SYNTAX_SAMPLE_TIME_ZONE
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
trait :nightly do
|
|
|
|
cron '0 1 * * *'
|
|
|
|
cron_timezone Gitlab::Ci::CronParser::VALID_SYNTAX_SAMPLE_TIME_ZONE
|
|
|
|
end
|
|
|
|
|
|
|
|
trait :weekly do
|
|
|
|
cron '0 1 * * 6'
|
|
|
|
cron_timezone Gitlab::Ci::CronParser::VALID_SYNTAX_SAMPLE_TIME_ZONE
|
|
|
|
end
|
|
|
|
|
|
|
|
trait :monthly do
|
|
|
|
cron '0 1 22 * *'
|
|
|
|
cron_timezone Gitlab::Ci::CronParser::VALID_SYNTAX_SAMPLE_TIME_ZONE
|
|
|
|
end
|
|
|
|
|
|
|
|
trait :inactive do
|
|
|
|
active false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|