Skip to content

Commit 90bf83f

Browse files
committed
Drop support for OTP 18 and 19
They started to fail in CI. With 20 -> 28 we still get a nice coverage as far back as 2017.
1 parent 963f6e9 commit 90bf83f

File tree

2 files changed

+2
-15
lines changed

2 files changed

+2
-15
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,6 @@ jobs:
2929
- run: make test
3030
- run: make edoc
3131
- run: REBAR=rebar make test
32-
test-eol:
33-
name: test ${{matrix.otp}} on ${{matrix.os}}
34-
runs-on: ${{matrix.os}}
35-
container:
36-
image: erlang:${{matrix.otp}}
37-
strategy:
38-
fail-fast: false
39-
matrix:
40-
os:
41-
- ubuntu-latest
42-
otp:
43-
- "19"
44-
- "18"
4532
steps:
4633
# The old containers can't run checkout@v4
4734
- uses: actions/checkout@v3

rebar.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
% -*- mode: erlang -*-
22
{erl_opts, [debug_info,
3-
{platform_define, "^(18|19|20|21|22)", new_crypto_unavailable},
4-
{platform_define, "^(18|19|20)", ssl_handshake_unavailable},
3+
{platform_define, "^(20|21|22)", new_crypto_unavailable},
4+
{platform_define, "^20", ssl_handshake_unavailable},
55
{platform_define, "^21-", otp_21}]}.
66
{cover_enabled, true}.
77
{eunit_opts, [verbose, {report,{eunit_surefire,[{dir,"."}]}}]}.

0 commit comments

Comments
 (0)