Skip to content

Commit 0285b50

Browse files
Minor changes in build script in accordance with GitHub Action CI trigger failures. (#55)
* Update netty-tcnative_ubi_9.3.sh * Update terraform_ubi_9.3.sh * Update keystone_ubi_9.3.sh * Update mariaDB-connector-odbc_ubi_9.3.sh * Update ruby_ubi_9_3.sh * Update minio_ubi_9_3.sh * Update build_info.json
1 parent c202f64 commit 0285b50

File tree

7 files changed

+10
-8
lines changed

7 files changed

+10
-8
lines changed

k/keystone/keystone_ubi_9.3.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ set -ex
2121

2222
# Variables
2323
PACKAGE_NAME=keystone
24-
PACKAGE_VERSION=27.0.0
24+
PACKAGE_VERSION=${1:-27.0.0}
2525
KEYSTONE_DBPASS=keystone
2626
KEYSTONE_HOST_IP=localhost
2727
SCRIPT_DIR=$(pwd)

m/mariaDB-connector-odbc/mariaDB-connector-odbc_ubi_9.3.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ set -ex
2121

2222
# Variables
2323
PACKAGE_NAME=MariaDB-Connector-ODBC
24-
PACKAGE_VERSION=3.2.6
24+
PACKAGE_VERSION=${1:-3.2.6}
2525
SCRIPT_DIR=$(pwd)
2626
PACKAGE_URL=https://github.com/MariaDB/mariadb-connector-odbc.git
2727

m/minio/minio_ubi_9_3.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ sudo tar -C /usr/local -xvzf go${GO_VERSION}.linux-s390x.tar.gz
4141

4242
# Clone the repository
4343
git clone -b $PACKAGE_VERSION $PACKAGE_URL
44+
go install mvdan.cc/gofumpt@latest
45+
gofumpt -l -w .
4446
cd $PACKAGE_NAME
4547

4648
if ! make; then

n/netty-tcnative/netty-tcnative_ubi_9.3.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ set -ex
2121

2222
# Variables
2323
PACKAGE_NAME=netty-tcnative
24-
PACKAGE_VERSION=2.0.72
24+
PACKAGE_VERSION=${1:-2.0.72}
2525
SCRIPT_DIR=$(pwd)
2626
JAVA_PROVIDED=OpenJDK11
2727
DISTRO="$ID-$VERSION_ID"

p/python/build_info.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"maintainer": "Yash Ratawa",
33
"package_name": "python",
44
"github_url": "https://github.com/python/cpython",
5-
"version": "v3.13.15",
5+
"version": "3.13.15",
66
"wheel_build" : true,
77
"package_dir": "p/python",
88
"default_branch": "main",

r/ruby/ruby_ubi_9_3.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -----------------------------------------------------------------------------
33
#
44
# Package : ruby
5-
# Version : v3.4.5
5+
# Version : 3.4.5
66
# Source repo : http://cache.ruby-lang.org/pub/ruby/3.4/ruby-3.4.5.tar.gz
77
# Tested on : UBI: 9.3
88
# Language : Ruby
@@ -23,7 +23,7 @@ set -ex
2323
# Variables
2424
PACKAGE_NAME=ruby
2525
PACKAGE_VERSION=${1:-3.4.5}
26-
PACKAGE_URL=http://cache.ruby-lang.org/pub/ruby/3.4/ruby-3.4.5.tar.gz
26+
PACKAGE_URL=http://cache.ruby-lang.org/pub/ruby/3.4/${PACKAGE_NAME}-${PACKAGE_VERSION}.tar.gz
2727

2828
yum install -y sudo openssl-devel gcc make wget tar libyaml-devel gcc make glibc-devel autoconf automake libtool wget
2929

@@ -51,7 +51,7 @@ yum install -y bison flex readline-devel
5151
#Install ruby
5252
wget $PACKAGE_URL
5353
tar zxf $PACKAGE_NAME-$PACKAGE_VERSION.tar.gz
54-
cd ruby-$PACKAGE_VERSION
54+
cd $PACKAGE_NAME-$PACKAGE_VERSION
5555

5656
if ! ./configure ; then
5757
echo "------------------$PACKAGE_NAME: configuration fails---------------------"

t/terraform/terraform_ubi_9.3.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ set -ex
2222

2323
# Variables
2424
PACKAGE_NAME=terraform
25-
PACKAGE_VERSION=v1.12.2
25+
PACKAGE_VERSION=${1:-v1.12.2}
2626
GO_VERSION=1.24.2
2727
PATCH_URL="https://raw.githubusercontent.com/linux-on-ibm-z/build-scripts/main/t/terraform/patch"
2828
SCRIPT_DIR=$(pwd)

0 commit comments

Comments
 (0)