Skip to content

Commit 60429a4

Browse files
committed
actions: revert to Ubuntu 20.04
IT is depressing... Thanks god we do not build bridges... Signed-off-by: Matteo Cafasso <[email protected]>
1 parent 686426d commit 60429a4

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/action.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,23 @@ name: build
22
on: [push, pull_request]
33
jobs:
44
build:
5-
runs-on: ubuntu-22.04
5+
runs-on: ubuntu-20.04
66
strategy:
77
matrix:
8+
erlang:
9+
- 1:25.3-1
10+
elixir:
11+
- 1.13.4-1
812
rmqref:
913
- v3.12.x
1014
steps:
1115
- uses: actions/checkout@v2
1216
- name: Install Erlang and Elixir
1317
run: |
14-
sudo add-apt-repository ppa:rabbitmq/rabbitmq-erlang-25
18+
wget https://packages.erlang-solutions.com/erlang-solutions_2.0_all.deb
19+
sudo dpkg -i erlang-solutions_2.0_all.deb
1520
sudo apt update
16-
sudo apt install -y erlang elixir-lang
21+
sudo apt install -y --allow-downgrades esl-erlang=${{ matrix.erlang }} elixir=${{ matrix.elixir }}
1722
- name: Run tests
1823
run: |
1924
make current_rmq_ref=${{ matrix.rmqref }}

0 commit comments

Comments
 (0)