Skip to content

Commit

Permalink
CI: Use checkout v3 for erlang < 20.3, and v4 for newer ones
Browse files Browse the repository at this point in the history
ations/checkout@v4 updated from node16 to node20,
which requires a recent GLIBC 2.27 or 2.28,
however some old erlang container images include too old GLIBC
  • Loading branch information
badlop committed Jan 18, 2024
1 parent b7b6fb2 commit 839a921
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
image: erlang:${{ matrix.otp }}
steps:
- uses: actions/checkout@v3
if: matrix.otp < '20.3'
- uses: actions/checkout@v4
if: matrix.otp >= '20.3'
- run: ./configure
- run: make
- run: rebar3 compile
Expand Down

0 comments on commit 839a921

Please sign in to comment.