From e1d6b2f225863a198b88f75fdcb7f58a42130693 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Del=20Pino?= <stephane.delpino44@gmail.com>
Date: Tue, 12 Jun 2018 08:10:37 +0200
Subject: [PATCH] Few clean-up

---
 .gitlab-ci.yml | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 547fec933..9989257a3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,8 +1,4 @@
 image: localhost:5000/ubuntu_gcc
-#before_script:
-#  - apt-get update
-#  - apt-get -y install cmake g++-7 gcovr bc
-#  - apt-get -y upgrade
 
 cache:
   key: "$CI_COMMIT_REF_SLUG"
@@ -26,7 +22,6 @@ build:
 tests:
   stage: test
   script:
-    - ls > /dev/null # seems necessary to ensure build is here...
     - cd build
     - make unit_tests
     - make coverage-report
@@ -36,7 +31,6 @@ pages:
   dependencies:
     - tests
   script:
-    - ls > /dev/null # seems necessary to ensure build is here...
     - rm -rf public/
     - mv build/coverage/ public/
   artifacts:
-- 
GitLab