From 927d952dae1faa84a747ccd5b9885ed21ccc69bd Mon Sep 17 00:00:00 2001 From: Loys Ollivier Date: Wed, 3 Jan 2018 15:56:12 +0100 Subject: utils: define test-plans based on build-type As the list of test is expending, we want to be able to specify test plans grouping several test definitions. These test plans are build type specific. Create a config file that specifies the test plans for each build type. If the user does not specify the tests to run then use the default ones for the build-type. Change-Id: Ied4e9f80d3e42787174189cd08499a2906e500ef Signed-off-by: Loys Ollivier --- templates/config/default.cfg | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 templates/config/default.cfg (limited to 'templates/config/default.cfg') diff --git a/templates/config/default.cfg b/templates/config/default.cfg new file mode 100644 index 0000000..ba43270 --- /dev/null +++ b/templates/config/default.cfg @@ -0,0 +1,15 @@ +[infra] +style = AGL +[default] +urlbase = https://download.automotivelinux.org/AGL/release/dab/4.0.2/ +test_plan = ["health-test","smoke"] +[release] +urlbase = https://download.automotivelinux.org/AGL/release/ +test_plan = ["all"] +[weekly] +[daily] +urlbase = https://download.automotivelinux.org/AGL/snapshots/ +test_plan = ["health-test","smoke", "yocto-ptest"] +[ci] +urlbase = https://download.automotivelinux.org/AGL/upload/ci/ +test_plan = ["health-test","smoke"] -- cgit 1.2.3-korg