From e388a9629ddab9c4dd7711f13f4e605a698ae418 Mon Sep 17 00:00:00 2001
From: baggepinnen <cont-frb@ulund.org>
Date: Wed, 12 Dec 2018 10:49:02 +0100
Subject: [PATCH] fix CI?

---
 .gitlab-ci.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 36bbdc2..1eda53e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -14,8 +14,8 @@
   script:
     # Let's run the tests. Substitute `coverage = false` below, if you do not
     # want coverage results.
-    - julia -e 'Pkg.rm("LabProcesses");Pkg.clone("https://gitlab.control.lth.se/processes/LabProcesses.jl")' # Update LabProcesses first
-    - julia -e 'Pkg.rm("BallAndBeam");Pkg.clone(pwd()); Pkg.test("BallAndBeam",coverage = false)'
+    - julia -e 'using Pkg;Pkg.rm("LabProcesses");Pkg.clone("https://gitlab.control.lth.se/processes/LabProcesses.jl")' # Update LabProcesses first
+    - julia -e 'using Pkg;Pkg.rm("BallAndBeam");Pkg.clone(pwd()); Pkg.test("BallAndBeam",coverage = false)'
     #- julia -e 'Pkg.update();Pkg.test("BallAndBeam", coverage = true)'
     # Comment out below if you do not want coverage results.
     #- julia -e 'Pkg.add("Coverage"); cd(Pkg.dir("BallAndBeam"));
@@ -23,8 +23,8 @@
     #  println("(", cl/tl*100, "%) covered")'
 
 # Name a test and select an appropriate image.
-test:0.6.0:
-  image: julialang/julia:v0.6.0
+test:1.0.0:
+  image: julialang/julia:v1.0.0
   <<: *test_definition
 
 
-- 
GitLab