File tree Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -212,6 +212,7 @@ impl ConfigExtractionService for ConfigExtractionServiceImpl {
212
212
is_enterprise,
213
213
platform : Some ( evg_config_utils. infer_build_variant_platform ( build_variant) ) ,
214
214
gen_task_suffix,
215
+ tags : task_def. tags . clone ( ) ,
215
216
} )
216
217
}
217
218
@@ -289,6 +290,7 @@ impl ConfigExtractionService for ConfigExtractionServiceImpl {
289
290
pass_through_vars : self . evg_config_utils . get_gen_task_vars ( task_def) ,
290
291
platform,
291
292
gen_task_suffix,
293
+ tags : task_def. tags . clone ( ) ,
292
294
} )
293
295
}
294
296
Original file line number Diff line number Diff line change @@ -64,6 +64,8 @@ pub struct FuzzerGenTaskParams {
64
64
pub platform : Option < String > ,
65
65
/// Name of variant specific suffix to add to tasks
66
66
pub gen_task_suffix : Option < String > ,
67
+ /// Tags to use in the generated tasks
68
+ pub tags : Option < Vec < String > > ,
67
69
}
68
70
69
71
impl FuzzerGenTaskParams {
@@ -303,6 +305,7 @@ fn build_fuzzer_sub_task(
303
305
name : formatted_name,
304
306
commands : Some ( commands) ,
305
307
depends_on : params. get_dependencies ( ) ,
308
+ tags : params. tags . clone ( ) ,
306
309
..Default :: default ( )
307
310
}
308
311
}
Original file line number Diff line number Diff line change @@ -76,6 +76,8 @@ pub struct ResmokeGenParams {
76
76
pub platform : Option < String > ,
77
77
/// Name of variant specific suffix to add to tasks
78
78
pub gen_task_suffix : Option < String > ,
79
+ /// Tags to use in the generated tasks
80
+ pub tags : Option < Vec < String > > ,
79
81
}
80
82
81
83
impl ResmokeGenParams {
@@ -782,6 +784,7 @@ impl GenResmokeTaskService for GenResmokeTaskServiceImpl {
782
784
params. require_multiversion_setup ,
783
785
) ) ,
784
786
depends_on : params. get_dependencies ( ) ,
787
+ tags : params. tags . clone ( ) ,
785
788
..Default :: default ( )
786
789
} ,
787
790
use_large_distro : params. use_large_distro ,
You can’t perform that action at this time.
0 commit comments