From a1692bec38716448c4112cefd7eb2114e724b8d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6=20Fahlke?= <jorrit@jorrit.de> Date: Mon, 25 Jun 2018 14:38:19 +0200 Subject: [PATCH] [CI] Optional tests for expensive tests. This adds build that runs expensive tests, including Vc on with at least AVX. The build is allowed to fail to compensate for the possibility of no runner beeing available. --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9bec92ff2..bfef2a1ed 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,6 +2,18 @@ variables: DUNECI_TEST_LABELS: quick +debian:10--gcc--expensive: + # This image has Vc + image: duneci/base:10 + script: duneci-standard-test + # allow expensive tests + variables: {DUNECI_TEST_LABELS: ""} + # require AVX to properly test Vc + tags: [duneci, "iset:avx"] + # allowed to fail to e.g. do no hold up a merge when a runner supporting avx + # is unavailable + allow_failure: true + debian:10 gcc:c++17: image: duneci/base:10 script: duneci-standard-test -- GitLab