Skip to content

Commit

Permalink
check different erlang versions
Browse files Browse the repository at this point in the history
  • Loading branch information
benoitc committed May 20, 2020
1 parent 71691e2 commit 18d99ad
Showing 1 changed file with 32 additions and 5 deletions.
37 changes: 32 additions & 5 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
image: erlang:23

before_script:
- apt-get -q update
- apt-get -y install python3
Expand All @@ -8,7 +6,36 @@ before_script:
- pip3 install -q gunicorn
- gunicorn -b 127.0.0.1:8000 -b unix:httpbin.sock httpbin:app&

test:

OTP-20.3:
image: erlang:20

script:
- ./support/rebar3 eunit
- ./support/rebar3 dialyzer
- ./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

0 comments on commit 18d99ad

Please sign in to comment.