Skip to content

Commit 5881462

Browse files
committed
CI: Update Erlang, Ubuntu, container
Changes: - Bump ubuntu-24.04 - Pull images from ECR instead of Docker Hub - Add Erlang/OTP 28 to the version matrix
1 parent d0ab902 commit 5881462

1 file changed

Lines changed: 4 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,19 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
otp: [19, 20, 25, 26, 27]
13-
runs-on: ubuntu-22.04
12+
otp: ['20', '25', '26', '27', '28']
13+
runs-on: ubuntu-24.04
1414
container:
15-
image: erlang:${{ matrix.otp }}
15+
image: public.ecr.aws/docker/library/erlang:${{ matrix.otp }}
1616
steps:
17-
- uses: actions/checkout@v3
18-
if: matrix.otp < 20
1917
- uses: actions/checkout@v4
20-
if: matrix.otp >= 20
2118
- run: make
2219
- run: rebar3 compile
2320
- run: rebar3 xref
2421
- run: rebar3 dialyzer
2522
- run: rebar3 eunit -v
2623
- name: Send to Coveralls
27-
if: matrix.otp == 26
24+
if: matrix.otp == 27
2825
env:
2926
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3027
run: |

0 commit comments

Comments
 (0)