85609c117e
Add env_var and file as supported types for CI variables. Variables of type file expose to users existing gitlab-runner behaviour - save variable value into a temp file and set the path to this file in an ENV var named after the variable key. Resolves https://gitlab.com/gitlab-org/gitlab-ce/issues/46806.
9 lines
264 B
Ruby
9 lines
264 B
Ruby
FactoryBot.define do
|
|
factory :ci_pipeline_schedule_variable, class: Ci::PipelineScheduleVariable do
|
|
sequence(:key) { |n| "VARIABLE_#{n}" }
|
|
value 'VARIABLE_VALUE'
|
|
variable_type 'env_var'
|
|
|
|
pipeline_schedule factory: :ci_pipeline_schedule
|
|
end
|
|
end
|