-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitlab-ci.yml
68 lines (63 loc) · 1.24 KB
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
stages:
- test
- docs
.script:
before_script:
##
## Install ssh-agent if not already installed, it is required by Docker.
## (change apt-get to yum if you use an RPM-based image)
##
- 'command -v ssh-agent >/dev/null || ( apt-get update -y && apt-get install openssh-client git -y )'
script:
- |
julia --project=@. -e '
using Pkg
Pkg.build()
Pkg.test(coverage=true)'
.coverage:
coverage: /Test coverage (\d+\.\d+%)/
after_script:
- |
julia -e '
using Pkg
Pkg.add("Coverage")
using Coverage
c, t = get_summary(process_folder())
using Printf
@printf "Test coverage %.2f%%\n" 100c / t'
.docs:
script:
- cd docs/
- |
julia --project -e '
using Pkg
Pkg.develop(PackageSpec(path=joinpath(pwd(), "..")))
Pkg.instantiate()'
- julia --project make.jl
Julia 1.5:
stage: test
image: julia:1.5
tags:
- docker
extends:
- .script
- .coverage
Julia 1.6:
stage: test
image: julia:1.6
tags:
- docker
extends:
- .script
- .coverage
docs:
stage: docs
image: julia:1.5
tags:
- docker
extends:
- .script
- .docs
artifacts:
paths:
- docs/build