From 1ae0102fa9ababba22e8a9495137db7f176ea7eb Mon Sep 17 00:00:00 2001 From: florian <f.spreckelsen@inidscale.com> Date: Mon, 12 Jul 2021 12:56:45 +0200 Subject: [PATCH] TST: Remove Julia 1.0 from Pipeline ... since it doesn't support the `Test` package --- .gitlab-ci.yml | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 556b179..a8e3126 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -48,30 +48,6 @@ code-style: # Name a test and select an appropriate image. # images comes from Docker hub -test:1.0: - stage: test - image: julia:1.0 - # Use `docker` runners - tags: [ docker ] - # Uncomment below if you would like to run the tests on specific - # references only, such as the branches `master`, `development`, - # etc. - # only: - # - master - # - development - script: - # Let's run the tests. Substitute `coverage = false` below, if you - # do not want coverage results. Use Pkg.clone for Julia 1.0 - - julia -e 'using Pkg; Pkg.clone(pwd()); - Pkg.build("CaosDB"); - Pkg.test("CaosDB"; coverage = true)' - # Comment out below if you do not want coverage results. - - julia -e 'using Pkg; Pkg.add("Coverage"); - import CaosDB; - cd(joinpath(dirname(pathof(CaosDB)), "..")); - using Coverage; cl, tl = get_summary(process_folder()); - println("(", cl/tl*100, "%) covered")' - test:1.6: stage: test image: julia:1.6 -- GitLab