Skip to content

Commit

Permalink
Merge pull request #4152 from esl/update-OTP-version-for-GH-Actions
Browse files Browse the repository at this point in the history
updating setup-beam GH action and OTP versions
  • Loading branch information
pawlooss1 committed Oct 18, 2023
2 parents 4ece47c + f82666d commit 2447bd2
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,16 @@ jobs:
strategy:
fail-fast: false
matrix:
otp: [ '24.3.4', '25.2' ]
## the full list of supported (prebuilt) OTP versions for ubuntu-22.04 runners
## can be found here:
## https://builds.hex.pm/builds/otp/ubuntu-22.04/builds.txt
otp: [ '25.3.2.6', '26.1.2' ]
runs-on: ubuntu-22.04
env:
PRESET: 'small_tests'
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
- uses: erlef/setup-beam@v1.16.0
with:
otp-version: ${{ matrix.otp }}
- uses: actions/cache@v3
Expand Down Expand Up @@ -61,17 +64,17 @@ jobs:
matrix:
preset: [internal_mnesia, pgsql_mnesia, mysql_redis, odbc_mssql_mnesia,
ldap_mnesia, elasticsearch_and_cassandra_mnesia]
otp: [ '25.2' ]
otp: [ '26.1.2' ]
include:
- test-spec: "default.spec"
- preset: elasticsearch_and_cassandra_mnesia
test-spec: "mam.spec"
- preset: ldap_mnesia
test-spec: "default.spec"
otp: '24.3.4'
otp: '25.3.2.6'
- preset: pgsql_mnesia
test-spec: "default.spec"
otp: '24.3.4'
otp: '25.3.2.6'
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
Expand All @@ -94,11 +97,11 @@ jobs:
fail-fast: false
matrix:
preset: [pgsql_mnesia, mysql_redis, odbc_mssql_mnesia]
otp: [ '25.2' ]
otp: [ '26.1.2' ]
test-spec: ["dynamic_domains.spec"]
include:
- preset: pgsql_mnesia
otp: '24.3.4'
otp: '25.3.2.6'
test-spec: "dynamic_domains.spec"
runs-on: ubuntu-22.04
steps:
Expand Down Expand Up @@ -135,7 +138,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
- uses: erlef/setup-beam@v1.16.0
with:
otp-version: ${{matrix.otp}}
- run: tools/test.sh -p dialyzer_only
Expand All @@ -149,7 +152,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
- uses: erlef/setup-beam@v1.16.0
with:
otp-version: ${{matrix.otp}}
- run: tools/test.sh -p xref_only
Expand All @@ -163,7 +166,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
- uses: erlef/setup-beam@v1.16.0
with:
otp-version: ${{matrix.otp}}
- run: tools/test.sh -p edoc_only
Expand Down

0 comments on commit 2447bd2

Please sign in to comment.