Skip to content

Commit 14f42f1

Browse files
committed
27 should fail
1 parent 5884ba4 commit 14f42f1

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/test-make-target.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,15 +87,16 @@ jobs:
8787
sudo systemctl is-active --quiet apparmor.service && sudo systemctl stop apparmor.service
8888
sudo systemctl disable apparmor.service
8989
90-
- name: RUN LOWER VERSIONED ERLANG/OTP IN DOCKER
90+
- name: RUN LOW VERSION ERLANG NODE IN DOCKER
9191
if: inputs.make_target == 'ct-rabbit_fifo_prop'
9292
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"
9495
9596
# Create ~/.erlang.cookie by starting a distributed node
9697
erl -sname temp_node -eval 'halt().' -noshell
9798
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} \
99100
erl -sname rabbit_fifo_prop@localhost -setcookie $(cat ~/.erlang.cookie) -noinput
100101
101102
- name: RUN TESTS

0 commit comments

Comments
 (0)