File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -97,6 +97,9 @@ module.exports = function run(args, rawArgs) {
97
97
// set record feature caps
98
98
utils . setRecordCaps ( bsConfig , args ) ;
99
99
100
+ // set build tag caps
101
+ utils . setBuildTags ( bsConfig , args ) ;
102
+
100
103
//set browsers
101
104
await utils . setBrowsers ( bsConfig , args ) ;
102
105
Original file line number Diff line number Diff line change @@ -414,6 +414,13 @@ exports.setTestEnvs = (bsConfig, args) => {
414
414
logger . debug ( `Setting env vars = ${ bsConfig . run_settings . env } ` ) ;
415
415
}
416
416
417
+ exports . setBuildTags = ( bsConfig , args ) => {
418
+ if ( ! this . isUndefined ( args . buildTag ) ) {
419
+ bsConfig . run_settings . build_tag = args . buildTag ;
420
+ }
421
+ logger . debug ( `Setting build tag = ${ bsConfig . run_settings . build_tag } ` ) ;
422
+ } ;
423
+
417
424
exports . setSystemEnvs = ( bsConfig ) => {
418
425
let envKeys = { } ;
419
426
You can’t perform that action at this time.
0 commit comments