-
-
Notifications
You must be signed in to change notification settings - Fork 443
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
41 lines (27 loc) · 661 Bytes
/
.gitlab-ci.yml
File metadata and controls
41 lines (27 loc) · 661 Bytes
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
before_script:
- apt-get -q update
- apt-get -y install python3
- apt-get install -y python3-pip
- pip3 install -q httpbin
- pip3 install -q gunicorn
- gunicorn -b 127.0.0.1:8000 -b unix:httpbin.sock httpbin:app&
OTP-20.3:
image: erlang:20
script:
- ./support/rebar3 eunit
- ./support/rebar3 dialyzer
OTP-21:
image: erlang:21
script:
- ./support/rebar3 eunit
- ./support/rebar3 dialyzer
OTP-22:
image: erlang:22
script:
- ./support/rebar3 eunit
- ./support/rebar3 dialyzer
OTP-23:
image: erlang:23
script:
- ./support/rebar3 eunit
- ./support/rebar3 dialyzer