diff options
author | Yuli Shlosberg <ys9693@att.com> | 2017-09-20 11:01:27 +0300 |
---|---|---|
committer | Yuli Shlosberg <ys9693@att.com> | 2017-09-20 11:37:26 +0300 |
commit | 14ee2878d35c650c0a13f928a526a8f45f144eca (patch) | |
tree | 991a72863555619d02f0227996eb2bd7e0a631fc /sdc-os-chef/sdc-sanity/chef-solo | |
parent | af6975568834f357478fb22de95f2f79f4a4c085 (diff) |
Build sanity docker execute automation
Change-Id: I7d275c7ec744ec9790c1147c2c28e48b16d2d92c
Issue-Id: SDC-315
Signed-off-by: Yuli Shlosberg <ys9693@att.com>
Diffstat (limited to 'sdc-os-chef/sdc-sanity/chef-solo')
-rw-r--r-- | sdc-os-chef/sdc-sanity/chef-solo/roles/sanityTests.json | 23 | ||||
-rw-r--r-- | sdc-os-chef/sdc-sanity/chef-solo/solo.json | 4 |
2 files changed, 26 insertions, 1 deletions
diff --git a/sdc-os-chef/sdc-sanity/chef-solo/roles/sanityTests.json b/sdc-os-chef/sdc-sanity/chef-solo/roles/sanityTests.json new file mode 100644 index 0000000000..74f12c7cc6 --- /dev/null +++ b/sdc-os-chef/sdc-sanity/chef-solo/roles/sanityTests.json @@ -0,0 +1,23 @@ +{ + "name": "sanityTests", + "description": "Execute sanity tests", + "json_class": "Chef::Role", + "default_attributes": { + + }, + "override_attributes": { + + }, + "chef_type": "role", + "run_list": [ + "recipe[sdc-sanity::sanityTests_1_cleanup_jettydir]", + "recipe[sdc-sanity::sanityTests_2_setup_configuration]", + "recipe[sdc-sanity::sanityTests_3_sanity_execution]" +// "recipe[sdc-simulator::SDC_Simulator_3_logback]", +// "recipe[sdc-simulator::SDC_Simulator_4_locate_keystore]", +// "recipe[sdc-simulator::SDC_Simulator_5_create_jetty_modules]" + ], + "env_run_lists": { + } +} + diff --git a/sdc-os-chef/sdc-sanity/chef-solo/solo.json b/sdc-os-chef/sdc-sanity/chef-solo/solo.json index 5bd228127d..6487d4cc4e 100644 --- a/sdc-os-chef/sdc-sanity/chef-solo/solo.json +++ b/sdc-os-chef/sdc-sanity/chef-solo/solo.json @@ -1,4 +1,6 @@ { - "run_list": [ "recipe[sdc-sanity::setup_sanity]" ] + "run_list": [ + "role[sanityTests]" + ] } |