Skip to content

Remove R20 from github workflow #254

Remove R20 from github workflow

Remove R20 from github workflow #254

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
tests:
name: Tests
strategy:
fail-fast: false
matrix:
otp: [25, 26, 27, 28, 29]
runs-on: ubuntu-24.04
container:
image: public.ecr.aws/docker/library/erlang:${{ matrix.otp }}
steps:
- uses: actions/checkout@v6
- run: sed -i 's|applications, \[|applications, \[erl_tidy, |g' src/xmpp.app.src
if: matrix.otp >= 26
- run: ./configure --enable-gcov
- run: make
if: matrix.otp >= 22
- run: REBAR=rebar3 ERLTIDY=true make
- run: REBAR=rebar3 make spec
- run: REBAR=rebar3 make xdata
- run: REBAR=rebar3 make
- run: REBAR=rebar3 make xref
- run: REBAR=rebar3 make dialyzer
- run: rebar3 eunit -v
- run: make doap
- run: git config --global --add safe.directory /__w/xmpp/xmpp
if: matrix.otp == 28 && github.event_name == 'push'
- uses: stefanzweifel/git-auto-commit-action@v7
if: matrix.otp == 28 && github.event_name == 'push'
with:
add_options: '-u'
file_pattern: 'include/*.hrl src/*.erl'
commit_message: Automatic changes "make spec xdata"
- run: rebar3 eunit -v
- name: Send to Coveralls
if: matrix.otp == 28
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
COVERALLS=true rebar3 as test coveralls send
curl -v -k https://coveralls.io/webhook \
--header "Content-Type: application/json" \
--data '{"repo_name":"$GITHUB_REPOSITORY",
"repo_token":"$GITHUB_TOKEN",
"payload":{"build_num":$GITHUB_RUN_ID,
"status":"done"}}'