From fe4ecc588035d2c4ec075cb589d139af67d8fc1e Mon Sep 17 00:00:00 2001 From: Dhairya Gandhi Date: Tue, 24 Sep 2019 16:15:48 +0530 Subject: [PATCH] trying out extending directly --- .gitlab-ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a7f471e0..9173bd74 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,6 +6,19 @@ variables: include: - 'https://raw.githubusercontent.com/JuliaGPU/gitlab-ci/master/templates/v4/common.yml' + +.test: + extends: .test + script: + - julia -e 'using InteractiveUtils; + versioninfo()' + - mkdir $JULIA_DEPOT_PATH # Pkg3.jl#325 + - julia --project -e 'using Pkg; + Pkg.instantiate(); + Pkg.build(); + Pkg.test(; coverage=true);' + +include: - 'https://raw.githubusercontent.com/JuliaGPU/gitlab-ci/master/templates/v4/test_v1.1.yml' - 'https://raw.githubusercontent.com/JuliaGPU/gitlab-ci/master/templates/v4/test_v1.2.yml' - 'https://raw.githubusercontent.com/JuliaGPU/gitlab-ci/master/templates/v4/test_v1.3.yml'