diff options
author | Loys Ollivier <lollivier@baylibre.com> | 2018-01-03 15:56:12 +0100 |
---|---|---|
committer | Loys Ollivier <lollivier@baylibre.com> | 2018-01-10 15:31:32 +0100 |
commit | 927d952dae1faa84a747ccd5b9885ed21ccc69bd (patch) | |
tree | 9a63895686f5fcf78c005776feaeaf4c5bd55c4c /templates | |
parent | 788b31a122c3823d5e756524187975a2ad14cac6 (diff) |
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 <lollivier@baylibre.com>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/config/default.cfg (renamed from templates/URLs/default.cfg) | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/templates/URLs/default.cfg b/templates/config/default.cfg index 4c2adec..ba43270 100644 --- a/templates/URLs/default.cfg +++ b/templates/config/default.cfg @@ -2,10 +2,14 @@ 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"] |