From 0486f8bdbe915a5b0f63698c25374cfca9aa95e0 Mon Sep 17 00:00:00 2001
From: Stephane Del Pino <stephane.delpino44@gmail.com>
Date: Tue, 23 Jul 2019 18:14:44 +0200
Subject: [PATCH] Use clang8 for coverage

For some reason, ubuntu runner fails due to some gcov-file format changes between
gcc8 and gcc7.

Since now it seems that coverage works again for both clang and gcc, one does
not care which one is used for the CI
---
 .gitlab-ci.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f4156b4b9..7f4bec564 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -9,8 +9,8 @@ variables:
 include:
   - local: '/.gitlab-ci/gcc8-seq-dbg.yml'
   - local: '/.gitlab-ci/gcc8-seq-release.yml'
-  - local: '/.gitlab-ci/gcc8-seq-coverage.yml'
+#  - local: '/.gitlab-ci/gcc8-seq-coverage.yml'
   - local: '/.gitlab-ci/clang8-seq-release.yml'
   - local: '/.gitlab-ci/clang8-mpi-release.yml'
-#  - local: '/.gitlab-ci/clang8-seq-coverage.yml'
-#  - local: '/.gitlab-ci/clang8-mpi-coverage.yml'
+  - local: '/.gitlab-ci/clang8-seq-coverage.yml'
+  - local: '/.gitlab-ci/clang8-mpi-coverage.yml'
-- 
GitLab