Skip to content

Link to image builder bug #30

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ runs:
- name: Erase MySQL package
run: sudo apt-get purge mysql-* || true
shell: bash
# This is to avoid RabbitMQ to fail at startup because a wrong version of erlang was installed
# This is to avoid RabbitMQ to fail at startup because a wrong version of erlang was installed.
# We also work around https://github.com/actions/runner-images/issues/12192
- name: Workaround for RabbitMQ
run: |
# fix freaky leading "-e" in /etc/hosts
sudo sed -i 's/^-e \+//g' /etc/hosts
sudo apt-get purge -y esl-erlang || true
sudo apt-get install -y erlang rabbitmq-server # if rabbitmq-server is not installed, tests must be stopped
Expand Down