Skip to content

Commit

Permalink
CI: Don't test with Erlang/OTP 19
Browse files Browse the repository at this point in the history
actions/checkout@v3 fails with erlang 19 container
and v4 requires at least erlang 20
  • Loading branch information
badlop committed Sep 30, 2024
1 parent 0c70cdb commit ff0dd53
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,13 @@ jobs:
strategy:
fail-fast: false
matrix:
otp: [19, 20, 25, 26, 27]
otp: [20, 25, 26, 27]
runs-on: ubuntu-22.04
container:
image: erlang:${{ matrix.otp }}
steps:
- uses: actions/checkout@v3
if: matrix.otp < 20
- uses: actions/checkout@v4
if: matrix.otp >= 20
if: matrix.otp
- run: sed -i 's|applications, \[|applications, \[erl_tidy, |g' src/xmpp.app.src
if: matrix.otp >= 26
- run: make
Expand Down

0 comments on commit ff0dd53

Please sign in to comment.