File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -87,15 +87,16 @@ jobs:
87
87
sudo systemctl is-active --quiet apparmor.service && sudo systemctl stop apparmor.service
88
88
sudo systemctl disable apparmor.service
89
89
90
- - name : RUN LOWER VERSIONED ERLANG/OTP IN DOCKER
90
+ - name : RUN LOW VERSION ERLANG NODE IN DOCKER
91
91
if : inputs.make_target == 'ct-rabbit_fifo_prop'
92
92
run : |
93
- LOW_ERLANG_VERSION="26.2"
93
+ # This version must be at least 1 major version lower than inputs.erlang_version
94
+ LOW_ERLANG_VERSION="27.3.3"
94
95
95
96
# Create ~/.erlang.cookie by starting a distributed node
96
97
erl -sname temp_node -eval 'halt().' -noshell
97
98
98
- docker run -d --network host --name erlang erlang:${LOW_ERLANG_VERSION} \
99
+ docker run -d --network host --name erlang_low_version erlang:${LOW_ERLANG_VERSION} \
99
100
erl -sname rabbit_fifo_prop@localhost -setcookie $(cat ~/.erlang.cookie) -noinput
100
101
101
102
- name : RUN TESTS
You can’t perform that action at this time.
0 commit comments