-
Notifications
You must be signed in to change notification settings - Fork 3
/
.gitlab-ci.yml
59 lines (51 loc) · 908 Bytes
/
.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
variables:
ERL_LIBS: "./libs"
stages:
- lint
- dialyzer
- eunit
- eqc
lint:
stage: lint
script:
- ./rebar3 as lint lint
tags:
- erlagn-19
dialyzer:
stage: dialyzer
script:
- ./rebar3 dialyzer
tags:
- erlagn-19
eunit:
stage: eunit
script:
- ./rebar3 eunit
tags:
- erlagn-19
.eqc_template: &eqc_definition
stage: eqc
script:
- mkdir libs
- cd libs
- curl -Ol http://www.quviq.com/wp-content/uploads/2015/09/eqcmini-2.01.0.zip
- unzip eqcmini-2.01.0.zip
- cd ..
- epmd &
#- ./rebar3 as eqc eqc # we got to disable this as it doesn't work with mini
eqc-smartos:
<<: *eqc_definition
tags:
- smartos
eqc-bsd:
<<: *eqc_definition
tags:
- bsd
eqc-linux:
<<: *eqc_definition
image: erlang:20
before_script:
- apt-get update
- apt-get install -y --no-install-recommends unzip
tags:
- linux