浏览代码

Drop R15 support

It can't even fetch packages from Hex anymore because of old SSL/TLS
libraries, and so it can't bootstrap anymore either. Plus R20 comes out
soon, and 5 major versions is quite enough.
pull/1541/head
Fred Hebert 8 年前
父节点
当前提交
1f9404e9cd
共有 2 个文件被更改,包括 0 次插入5 次删除
  1. +0
    -2
      .travis.yml
  2. +0
    -3
      src/rebar_prv_common_test.erl

+ 0
- 2
.travis.yml 查看文件

@ -1,8 +1,6 @@
language: erlang language: erlang
matrix: matrix:
include: include:
- os: linux
otp_release: R15B03
- os: linux - os: linux
otp_release: R16B03-1 otp_release: R16B03-1
- os: linux - os: linux

+ 0
- 3
src/rebar_prv_common_test.erl 查看文件

@ -567,9 +567,6 @@ get_tests_from_specs(Specs) ->
case ct_testspec:collect_tests_from_file(Specs,true) of case ct_testspec:collect_tests_from_file(Specs,true) of
Tests when is_list(Tests) -> Tests when is_list(Tests) ->
{ok,[{S,ct_testspec:prepare_tests(R)} || {S,R} <- Tests]}; {ok,[{S,ct_testspec:prepare_tests(R)} || {S,R} <- Tests]};
R when is_tuple(R), element(1,R)==testspec ->
%% R15
{ok,[{Specs,ct_testspec:prepare_tests(R)}]};
Error -> Error ->
Error Error
end end

正在加载...
取消
保存