diff options
author | Kevin Hilman <khilman@baylibre.com> | 2018-12-03 12:05:35 -0800 |
---|---|---|
committer | Kevin Hilman <khilman@baylibre.com> | 2018-12-03 12:38:34 -0800 |
commit | e5fdbc0b414c0e4c94ea62899be806bb9c687dda (patch) | |
tree | 0850400de3f7948e41a8405deee4fbf796b652b6 | |
parent | 13e502784e98e8e5fdcd6289443a84a6c750b9b3 (diff) |
templates/tests: move to standard test plans
Remove specific test-plan templates, and migrate to the build-specific
templates: ci, snapshot, release.
Note that the contents of smoke and yocto-ptest are now part of the "ci"
template.
Change-Id: I982529ecafddd903db5954af03af15ac8d4f871a
Signed-off-by: Kevin Hilman <khilman@baylibre.com>
-rw-r--r-- | templates/config/default.cfg | 13 | ||||
-rw-r--r-- | templates/tests/smoke.jinja2 | 15 | ||||
-rw-r--r-- | templates/tests/yocto-ptest.jinja2 | 8 |
3 files changed, 6 insertions, 30 deletions
diff --git a/templates/config/default.cfg b/templates/config/default.cfg index 5287730..4177687 100644 --- a/templates/config/default.cfg +++ b/templates/config/default.cfg @@ -1,18 +1,17 @@ [infra] style = AGL + [default] -urlbase = http://download.automotivelinux.org/AGL/release/eel/5.0.0/ -test_plan = ["smoke"] -[dab] -urlbase = http://download.automotivelinux.org/AGL/release/dab/4.0.2/ -test_plan = [] [release] urlbase = http://download.automotivelinux.org/AGL/release/ -test_plan = ["all"] +test_plan = ["release"] + [weekly] [daily] +[snapshot] urlbase = http://download.automotivelinux.org/AGL/snapshots/ -test_plan = ["smoke", "yocto-ptest"] +test_plan = ["release"] + [ci] urlbase = http://download.automotivelinux.org/AGL/upload/ci/ test_plan = ["ci"] diff --git a/templates/tests/smoke.jinja2 b/templates/tests/smoke.jinja2 deleted file mode 100644 index 7f39628..0000000 --- a/templates/tests/smoke.jinja2 +++ /dev/null @@ -1,15 +0,0 @@ - -- test: - definitions: - - repository: https://git.automotivelinux.org/src/qa-testdefinitions - from: git - path: test-suites/short-smoke/busybox.yaml - name: busybox - - repository: https://git.automotivelinux.org/src/qa-testdefinitions - from: git - path: test-suites/short-smoke/smoke-tests-basic.yaml - name: smoke-tests-basic - - repository: https://git.automotivelinux.org/src/qa-testdefinitions - from: git - path: test-suites/short-smoke/service-check.yaml - name: service-check diff --git a/templates/tests/yocto-ptest.jinja2 b/templates/tests/yocto-ptest.jinja2 deleted file mode 100644 index 6c23e67..0000000 --- a/templates/tests/yocto-ptest.jinja2 +++ /dev/null @@ -1,8 +0,0 @@ -- test: - timeout: - minutes: 60 - definitions: - - repository: https://git.automotivelinux.org/src/qa-testdefinitions - from: git - path: test-suites/yocto-ptest.yaml - name: yocto-ptest
\ No newline at end of file |