Skip to content

Commit c61f68c

Browse files
committed
Workaround for RabbitMQ
1 parent 2a2f55b commit c61f68c

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

action.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ runs:
2323
- name: Start MySQL
2424
run: sudo systemctl start mysql.service
2525
shell: bash
26+
# This is to avoid RabbitMQ to fail at startup because a wrong version of erlang was installed
27+
- name: Workaround for RabbitMQ
28+
run: |
29+
sudo apt-get purge -y esl-erlang || true
30+
sudo apt-get install -y erlang rabbitmq-server || true
31+
shell: bash
2632
- name: Remove unwanted packages
2733
run: sudo apt-get purge -y python3-simplejson python3-pyasn1-modules postgresql* || true
2834
shell: bash

0 commit comments

Comments
 (0)