From 30fdbee769f4a9cbbb89ce44b6220b49d747ffe3 Mon Sep 17 00:00:00 2001 From: ddavison Date: Tue, 26 Mar 2019 21:27:25 -0700 Subject: [PATCH] Run smoke and quarantined smoke tests. Run the smoke tests against CE and EE as part of the daily run. We should also run the quarantined smoke tests as part of these runs --- .gitlab-ci.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 86d216ea..a3a137df 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -88,6 +88,36 @@ ee:sanity-framework: <<: *high-capacity <<: *ee-qa +ce:smoke: + script: + - bin/qa Test::Instance::Image ${RELEASE:=CE} --tag smoke + <<: *test + <<: *high-capacity + <<: *ce-qa + +ee:smoke: + script: + - bin/qa Test::Instance::Image ${RELEASE:=EE} --tag smoke + <<: *test + <<: *high-capacity + <<: *ee-qa + +ce:smoke-quarantine: + script: + - bin/qa Test::Instance::Image ${RELEASE:=CE} --tag smoke --tag quarantine + <<: *test + <<: *high-capacity + <<: *ce-qa + <<: *quarantine + +ee:smoke-quarantine: + script: + - bin/qa Test::Instance::Image ${RELEASE:=EE} --tag smoke + <<: *test + <<: *high-capacity + <<: *ee-qa + <<: *quarantine + ce:instance: script: - bin/qa Test::Instance::Image ${RELEASE:=CE} -- GitLab