We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a2f55b commit c61f68cCopy full SHA for c61f68c
1 file changed
action.yaml
@@ -23,6 +23,12 @@ runs:
23
- name: Start MySQL
24
run: sudo systemctl start mysql.service
25
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
32
- name: Remove unwanted packages
33
run: sudo apt-get purge -y python3-simplejson python3-pyasn1-modules postgresql* || true
34
0 commit comments