diff options
-rw-r--r-- | templates/config/default.cfg | 6 | ||||
-rw-r--r-- | templates/tests/application-lifecycle.jinja2 | 11 | ||||
-rw-r--r-- | templates/tests/dumpjournal.jinja2 | 9 |
3 files changed, 23 insertions, 3 deletions
diff --git a/templates/config/default.cfg b/templates/config/default.cfg index 0bc2f62..a66d75e 100644 --- a/templates/config/default.cfg +++ b/templates/config/default.cfg @@ -4,7 +4,7 @@ style = AGL [default] [release] urlbase = http://download.automotivelinux.org/AGL/release/ -test_plan = ["release", "pyagl", "can"] +test_plan = ["release", "pyagl", "can", "dumpjournal"] [prerelease] urlbase = http://download.automotivelinux.org/AGL/upload/ci/ @@ -14,9 +14,9 @@ test_plan = ["release", "pyagl", "can"] [daily] [snapshot] urlbase = http://download.automotivelinux.org/AGL/snapshots/ -test_plan = ["release", "pyagl", "can"] +test_plan = ["release", "pyagl", "can", "dumpjournal"] [ci] urlbase = http://download.automotivelinux.org/AGL/upload/ci/ -test_plan = ["ci", "pyagl", "can"] +test_plan = ["ci", "pyagl", "can", "dumpjournal"] diff --git a/templates/tests/application-lifecycle.jinja2 b/templates/tests/application-lifecycle.jinja2 index c9e6242..536ac4a 100644 --- a/templates/tests/application-lifecycle.jinja2 +++ b/templates/tests/application-lifecycle.jinja2 @@ -5,6 +5,7 @@ definitions: - repository: https://git.automotivelinux.org/src/qa-testdefinitions from: git + history: False path: test-suites/short-smoke/application-lifecycle.yaml name: application-lifecycle parameters: @@ -13,3 +14,13 @@ {%- else %} APPURL: "{{app_url_base}}/{{ app_changeid }}/{{ app_patchset }}/{{ app_branch }}/{{ sdk_arch }}" {%- endif %} + +- test: + timeout: + minutes: 15 + definitions: + - repository: https://git.automotivelinux.org/src/qa-testdefinitions + from: git + history: False + path: test-suites/short-smoke/dumpjournal.yaml + name: ci-dumpjournal diff --git a/templates/tests/dumpjournal.jinja2 b/templates/tests/dumpjournal.jinja2 new file mode 100644 index 0000000..a3011db --- /dev/null +++ b/templates/tests/dumpjournal.jinja2 @@ -0,0 +1,9 @@ +- test: + timeout: + minutes: 15 + definitions: + - repository: https://git.automotivelinux.org/src/qa-testdefinitions + from: git + history: False + path: test-suites/short-smoke/dumpjournal.yaml + name: ci-dumpjournal |