forked from gootik/rebar_cmd
-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (47 loc) · 1.16 KB
/
cicd.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
name: ci/cd
on:
workflow_dispatch:
push:
branches: [ main, 'release/*' ]
pull_request:
branches: [ main, 'release/*' ]
# Build once a month, just to be sure things are still working
schedule:
- cron: "19 3 26 * *"
jobs:
builds:
name: Erlang ${{ matrix.otp_version }} build
runs-on: ubuntu-22.04
strategy:
matrix:
otp_version: ['27', '26', '25', '24']
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp_version }}
rebar3-version: '3.22'
- name: Compile
run: rebar3 compile
- name: Xref Checks
run: rebar3 xref
- name: Run Common Tests
run: rebar3 ct -v
old-builds:
name: Erlang ${{ matrix.otp_version }} build
runs-on: ubuntu-20.04
strategy:
matrix:
otp_version: ['23', '22', '21']
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp_version }}
rebar3-version: '3.15'
- name: Compile
run: rebar3 compile
- name: Xref Checks
run: rebar3 xref
- name: Run Common Tests
run: rebar3 ct -v