From a2811accfa7339d141320f292871a57c7c833638 Mon Sep 17 00:00:00 2001 From: themilchenko Date: Thu, 3 Oct 2024 09:52:25 +0300 Subject: [PATCH] ci: add almalinux platform to packaging Almalinux 8, 9 needs to be supported and wasn't included to the platform list, but `packpack/packpack` supports it. After the patch this platform has been included. Closes #128 --- .github/workflows/packaging.yml | 2 ++ rpm/prebuild.sh | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/packaging.yml b/.github/workflows/packaging.yml index 9ac0307..64c2a07 100644 --- a/.github/workflows/packaging.yml +++ b/.github/workflows/packaging.yml @@ -15,6 +15,8 @@ jobs: fail-fast: false matrix: platform: + - { os: 'almalinux', dist: '8'} + - { os: 'almalinux', dist: '9'} - { os: 'debian', dist: 'stretch' } - { os: 'debian', dist: 'buster' } - { os: 'debian', dist: 'bullseye' } diff --git a/rpm/prebuild.sh b/rpm/prebuild.sh index b380f95..d179f14 100755 --- a/rpm/prebuild.sh +++ b/rpm/prebuild.sh @@ -2,4 +2,4 @@ set -exu # Strict shell (w/o -o pipefail) -curl -LsSf https://www.tarantool.io/release/1.10/installer.sh | sudo bash +curl -LsSf https://tarantool.io/release/1.10/installer.sh | sed '2s/^/echo 8 > \/etc\/centos-release\n/' | sudo bash