File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -2,18 +2,23 @@ name: build
22on : [push, pull_request]
33jobs :
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 }}
You can’t perform that action at this time.
0 commit comments