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/config/default.cfg | |
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/config/default.cfg')
-rw-r--r-- | templates/config/default.cfg | 15 |
1 files changed, 15 insertions, 0 deletions
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"] |