File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed
.github/packaging/project Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+ set -xeuo pipefail
13
24function build_packages(){
35 if [ " $ENV_DISTRO " = " " ]; then
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22set -xeuo pipefail
3+
34DISTRO=" $1 "
45env
56cd local
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
2- set -x
2+ set -xeuo pipefail
3+
34DEBIAN_12_DEPS=" libreadline8 libreadline-dev ruby-rubygems make rpm git snapd curl binutils rsync libssl3 libssl-dev lzma lzma-dev libffi-dev build-essential gcc g++"
45DEBIAN_13_DEPS=" libreadline8 libreadline-dev ruby-rubygems make rpm git snapd curl binutils rsync libssl3 libssl-dev lzma liblzma-dev libffi-dev libsqlite3-dev build-essential gcc g++ zlib1g-dev libbz2-dev libreadline-dev libncursesw5-dev libnss3-dev uuid-dev tk-dev xz-utils"
56UBUNTU_2004_DEPS=" libreadline8 libreadline-dev ruby make rpm git snapd curl binutils rsync libssl1.1 libssl-dev lzma lzma-dev libffi-dev build-essential gcc g++"
@@ -9,6 +10,7 @@ EL8_DEPS="ruby rubygems redhat-rpm-config rpm-build make git rsync gcc gcc-c++
910EL9_DEPS=" ruby rpmdevtools make git rsync gcc g++ make automake zlib zlib-devel libffi-devel openssl-devel bzip2-devel xz-devel xz xz-libs sqlite sqlite-devel sqlite-libs"
1011EL10_DEPS=" ruby rpmdevtools make git rsync gcc g++ make automake zlib zlib-devel libffi-devel openssl-devel bzip2-devel xz-devel xz xz-libs sqlite sqlite-devel sqlite-libs"
1112AMZN2023_DEPS=" readline-devel ruby rpmdevtools make git rsync gcc g++ make automake zlib zlib-devel libffi-devel openssl-devel bzip2-devel xz-devel xz xz-libs sqlite sqlite-devel sqlite-libs"
13+
1214function install_deps_debian12() {
1315 apt -y install $DEBIAN_12_DEPS
1416 if [ " $( uname -m) " = " x86_64" ]; then
@@ -151,6 +153,7 @@ function install_deps_ubuntu24.04() {
151153 install /root/.asdf/installs/python/3.10.18/bin/pip3 /usr/bin/pip3
152154 gem install fpm -v 1.17.0
153155}
156+
154157function install_deps_el8() {
155158 dnf module enable -y ruby:2.7
156159 yum install -y " https://download.rockylinux.org/pub/rocky/8.10/Devel/$( uname -m) /os/Packages/r/readline-devel-7.0-10.el8.$( uname -m) .rpm"
You can’t perform that action at this time.
0 commit comments