From bf3f904fe921ecff8394b261cb98f31383a04a9b Mon Sep 17 00:00:00 2001 From: Badlop Date: Mon, 21 Apr 2025 19:07:09 +0200 Subject: [PATCH] Runtime: Don't test rebar2 + OTP 28 because "make rel" fails When running "make rel": ./rebar generate ==> rel (generate) ERROR: generate failed while processing /__w/ejabberd/ejabberd/rel: {'EXIT',{{badmatch,{error,"Application et is used in release \"ejabberd\" and cannot be excluded"}}, [{rebar_reltool,generate,2, [{file,"src/rebar_reltool.erl"},{line,53}]}, {rebar_core,run_modules,4,[{file,"src/rebar_core.erl"},{line,493}]}, {rebar_core,execute,6,[{file,"src/rebar_core.erl"},{line,418}]}, {rebar_core,maybe_execute,8, [{file,"src/rebar_core.erl"},{line,302}]}, {rebar_core,process_dir1,7,[{file,"src/rebar_core.erl"},{line,261}]}, {rebar_core,process_each,5,[{file,"src/rebar_core.erl"},{line,351}]}, {rebar_core,process_dir1,7,[{file,"src/rebar_core.erl"},{line,253}]}, {rebar_core,process_commands,2, [{file,"src/rebar_core.erl"},{line,93}]}]}} make: *** [Makefile:570: prod] Error 1 --- .github/workflows/runtime.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/runtime.yml b/.github/workflows/runtime.yml index da9fc9c03..87faf076d 100644 --- a/.github/workflows/runtime.yml +++ b/.github/workflows/runtime.yml @@ -36,6 +36,8 @@ jobs: exclude: - otp: '27' rebar: 'rebar' + - otp: '28' + rebar: 'rebar' runs-on: ubuntu-24.04 container: image: public.ecr.aws/docker/library/erlang:${{ matrix.otp }}