-
Notifications
You must be signed in to change notification settings - Fork 88
68 lines (64 loc) · 2.08 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: CI
on: [push, pull_request]
jobs:
tests:
name: Tests
strategy:
fail-fast: false
matrix:
otp: [19, 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
- run: sed -i 's|applications, \[|applications, \[erl_tidy, |g' src/xmpp.app.src
if: matrix.otp >= 26
- 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 == 25 && github.event_name == 'push'
- uses: stefanzweifel/git-auto-commit-action@v4
if: matrix.otp == 25 && github.event_name == 'push'
with:
add_options: '-u'
commit_message: Automatic changes "make spec xdata"
cover:
name: Cover
needs: [tests]
runs-on: ubuntu-22.04
container:
image: erlang:26
steps:
- uses: actions/checkout@v3
- run: ./configure --enable-gcov
- run: REBAR=rebar3 make
- run: REBAR=rebar3 make spec
- run: REBAR=rebar3 make xdata
- run: REBAR=rebar3 make
- run: rebar3 eunit -v
#- run: pip install --user cpp-coveralls
#- run: cpp-coveralls -b `pwd` --verbose --gcov-options '\-lp' --dump c.json
- name: Send to Coveralls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
#ADDJSONFILE=c.json COVERALLS=true rebar3 as test coveralls send
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"}}'