Skip to content

Commit

Permalink
Updated CI/CD.
Browse files Browse the repository at this point in the history
  • Loading branch information
oubiwann committed Mar 7, 2024
1 parent f4290fe commit 73dd042
Showing 1 changed file with 33 additions and 8 deletions.
41 changes: 33 additions & 8 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,20 @@ on:

jobs:

build:
name: Build on OTP ${{ matrix.otp_version }} / ${{ matrix.os }}
builds:
name: Erlang ${{ matrix.otp_version }} build
runs-on: ubuntu-latest

strategy:
matrix:
# otp_version: [19, 20] Removed due to an incompatibility with rebar3_lfe
otp_version: [21, 22, 23, 24, 25, 26]
os: [ubuntu-latest]

container:
image: erlang:${{ matrix.otp_version }}
otp_version: ['24', '25', '26']

steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp_version }}
rebar3-version: '3.22'
- name: Check rebar3 Version
run: DEBUG=1 rebar3 --version
- name: Compile
Expand All @@ -35,3 +34,29 @@ jobs:
run: rebar3 as test eunit
- name: Run Tests (ltest runner)
run: make check-runner-ltest

old-builds:
name: Erlang ${{ matrix.otp_version }} build (old)
runs-on: ubuntu-latest

strategy:
matrix:
otp_version: ['21', '22', '23']

steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp_version }}
rebar3-version: '3.22'
- name: Check rebar3 Version
run: DEBUG=1 rebar3 --version
- name: Compile
run: rebar3 compile
#- name: Xref Check
# continue-on-error: true
# run: rebar3 xref
- name: Run Tests
run: rebar3 as test eunit
- name: Run Tests (ltest runner)
run: make check-runner-ltest

0 comments on commit 73dd042

Please sign in to comment.