Skip to content

Commit 043d74b

Browse files
authored
Merge pull request #4425 from esl/gh-actions-ubuntu-pkg
Fix building packages on GitHub actions
2 parents 03bc6f1 + e6dbd9b commit 043d74b

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
## the full list of supported (prebuilt) OTP versions for ubuntu-22.04 runners
2828
## can be found here:
2929
## https://builds.hex.pm/builds/otp/ubuntu-22.04/builds.txt
30-
otp: [ '26.2.5.2', '27.0.1' ]
30+
otp: [ '26.2.5.2', '27.1.2' ]
3131
runs-on: ubuntu-22.04
3232
env:
3333
PRESET: 'small_tests'
@@ -66,7 +66,7 @@ jobs:
6666
matrix:
6767
preset: [internal_mnesia, pgsql_mnesia, mysql_redis, odbc_mssql_mnesia,
6868
ldap_mnesia, elasticsearch_and_cassandra_mnesia]
69-
otp: [ '27.0.1' ]
69+
otp: [ '27.1.2' ]
7070
include:
7171
- test-spec: "default.spec"
7272
- preset: elasticsearch_and_cassandra_mnesia
@@ -101,7 +101,7 @@ jobs:
101101
fail-fast: false
102102
matrix:
103103
preset: [pgsql_mnesia, mysql_redis, odbc_mssql_mnesia]
104-
otp: [ '27.0.1' ]
104+
otp: [ '27.1.2' ]
105105
test-spec: ["dynamic_domains.spec"]
106106
include:
107107
- preset: pgsql_mnesia
@@ -188,11 +188,14 @@ jobs:
188188
strategy:
189189
fail-fast: false
190190
matrix:
191-
pkg: [ubuntu_xenial]
191+
pkg: [ubuntu-jammy]
192192
runs-on: ubuntu-22.04
193193
env:
194-
ESL_ERLANG_PKG_VER: "25.3.2"
194+
pkg_OTP_VERSION: "27.1.2"
195195
pkg_PLATFORM: ${{matrix.pkg}}
196+
GPG_PUBLIC_KEY: ${{ secrets.GPG_PUBLIC_KEY }}
197+
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
198+
GPG_PASS: ${{ secrets.GPG_PASS }}
196199
steps:
197200
- uses: actions/checkout@v3
198201
with:

0 commit comments

Comments
 (0)