Skip to content

Commit 14b23d5

Browse files
committed
ci: add Ubuntu Jammy and Fedora 35, 36
1 parent 7c5c7da commit 14b23d5

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

.github/workflows/packaging.yml

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,12 @@ jobs:
1616
platform:
1717
- {os: debian, dist: bullseye}
1818
- {os: ubuntu, dist: focal}
19+
- {os: ubuntu, dist: jammy}
1920
- {os: centos, dist: 7}
2021
- {os: centos, dist: 8}
2122
- {os: fedora, dist: 34}
23+
- {os: fedora, dist: 35}
24+
- {os: fedora, dist: 36}
2225

2326
runs-on: ubuntu-latest
2427
steps:
@@ -63,9 +66,12 @@ jobs:
6366
platform:
6467
- {os: debian, dist: bullseye}
6568
- {os: ubuntu, dist: focal}
69+
- {os: ubuntu, dist: jammy}
6670
- {os: centos, dist: 7}
6771
- {os: centos, dist: 8}
6872
- {os: fedora, dist: 34}
73+
- {os: fedora, dist: 35}
74+
- {os: fedora, dist: 36}
6975
tarantool:
7076
# Verify on oldest and newest tarantool versions.
7177
#
@@ -74,14 +80,20 @@ jobs:
7480
# executable and when the module falls back to the
7581
# system libcurl.
7682
- release/1.10.7
77-
- live/2.9
83+
- release/2.10.0
7884
exclude:
7985
# Tarantool 1.10.7 release is not supported on
80-
# debian:bullseye and fedora:34.
86+
# debian:bullseye, ubuntu:jammy and fedora:34,35,36.
8187
- platform: {os: debian, dist: bullseye}
8288
tarantool: release/1.10.7
89+
- platform: {os: ubuntu, dist: jammy}
90+
tarantool: release/1.10.7
8391
- platform: {os: fedora, dist: 34}
8492
tarantool: release/1.10.7
93+
- platform: {os: fedora, dist: 35}
94+
tarantool: release/1.10.7
95+
- platform: {os: fedora, dist: 36}
96+
tarantool: release/1.10.7
8597

8698
env:
8799
# Prevent packages like tzdata from asking configuration
@@ -125,6 +137,9 @@ jobs:
125137
T_VERSION="${T##*/}"
126138
if [ "${T_KIND}" = release ]; then
127139
T_SERIES="${T_VERSION%.*}"
140+
if [ "${T_SERIES}" = "2.10" ]; then
141+
T_SERIES="2"
142+
fi
128143
else
129144
T_SERIES="${T_VERSION}"
130145
fi

0 commit comments

Comments
 (0)