Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Currency:Added build-script,build_info.json for scikit-learn:1.1.1 #5118

Merged
merged 2 commits into from
Jan 3, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 17 additions & 4 deletions s/scikit-learn/build_info.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,25 @@
{
"maintainer": "Salil4IBM",
"maintainer": "vinodk99",
"package_name": "scikit-learn",
"github_url": "https://github.com/scikit-learn/scikit-learn.git",
"version": "1.5.2",
"version": "1.1.1",
"wheel_build" : true,
"default_branch": "main",
"build_script": "scikit-learn_ubi_9.3.sh",
"build_script": "scikit-learn_1.1.1_ubi_9.3.sh",
"package_dir": "s/scikit-learn",
"docker_build": false,
"validate_build_script": true,
"use_non_root_user": false
"use_non_root_user": false,
"1.5.2": {
"build_script": "scikit-learn_ubi_9.3.sh"
},
"1.0.2": {
"build_script": "scikit-learn_ubi_8.5.sh"
},
"1.5.0": {
"build_script": "scikit-learn_ubi_8.10.sh"
},
"*":{
"build_script": "scikit-learn_1.1.0_ubi_9.3.sh"
}
}
57 changes: 57 additions & 0 deletions s/scikit-learn/scikit-learn_1.1.1_ubi_9.3.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
#!/bin/bash -e
# -----------------------------------------------------------------------------
#
# Package : scikit-learn
# Version : 1.1.1
# Source repo : https://github.com/scikit-learn/scikit-learn
# Tested on : UBI:9.3
# Language : Python
# Travis-Check : True
# Script License: Apache License 2.0
# Maintainer : Vinod K<Vinod.K1@ibm.com>
#
# Disclaimer: This script has been tested in root mode on given
# ========== platform using the mentioned version of the package.
# It may not work as expected with newer versions of the
# package and/or distribution. In such case, please
# contact "Maintainer" of this script.
#
# ----------------------------------------------------------------------------

PACKAGE_NAME=scikit-learn
PACKAGE_VERSION=${1:-1.1.1}
PACKAGE_URL=https://github.com/scikit-learn/scikit-learn

yum install -y gcc gcc-c++ make libtool cmake git wget xz python python-devel zlib-devel openssl-devel bzip2-devel libffi-devel libevent-devel libjpeg-turbo-devel gcc-gfortran openblas openblas-devel libgomp

OS_NAME=$(cat /etc/os-release | grep ^PRETTY_NAME | cut -d= -f2)

# clone source repository
git clone $PACKAGE_URL
cd $PACKAGE_NAME
git checkout $PACKAGE_VERSION
git submodule update --init

# install scikit-learn dependencies and build dependencies
pip install pytest cython==0.29.36 numpy==1.23.5 scipy joblib threadpoolctl meson-python ninja setuptools==59.8.0

if ! (python setup.py install) ; then
echo "------------------$PACKAGE_NAME:Install_fails-------------------------------------"
echo "$PACKAGE_URL $PACKAGE_NAME"
echo "$PACKAGE_NAME | $PACKAGE_URL | $PACKAGE_VERSION | GitHub | Fail | Install_Fails"
exit 1
fi
export PY_IGNORE_IMPORTMISMATCH=1

#run tests
if ! pytest sklearn/tests/test_random_projection.py; then
echo "------------------$PACKAGE_NAME:Install_success_but_test_fails---------------------"
echo "$PACKAGE_URL $PACKAGE_NAME"
echo "$PACKAGE_NAME | $PACKAGE_URL | $PACKAGE_VERSION | GitHub | Fail | Install_success_but_test_Fails"
exit 2
else
echo "------------------$PACKAGE_NAME:Install_&_test_both_success-------------------------"
echo "$PACKAGE_URL $PACKAGE_NAME"
echo "$PACKAGE_NAME | $PACKAGE_URL | $PACKAGE_VERSION | GitHub | Pass | Both_Install_and_Test_Success"
exit 0
fi
2 changes: 1 addition & 1 deletion s/scikit-learn/scikit-learn_ubi_8.5.sh
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@
# Source repo : https://github.com/scikit-learn/scikit-learn.git
# Tested on : UBI 8.5
# Language : Python
# Travis-Check : True
# Travis-Check : False
# Script License: Apache License 2.0
# Maintainer : Reynold Vaz <Reynold.Vaz@ibm.com>
#
2 changes: 1 addition & 1 deletion s/scikit-learn/scikit-learn_ubi_9.3.sh
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@
# Source repo : https://github.com/scikit-learn/scikit-learn.git
# Tested on : UBI 9.3
# Language : Python, Cython, C++
# Travis-Check : True
# Travis-Check : False
# Script License: Apache License 2.0
# Maintainer : Salil Verlekar <Salil.Verlekar2@ibm.com>
#
2 changes: 1 addition & 1 deletion s/scikit-learn/scikit-learn_v0.24.1_ubi_8.5.sh
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@
# Source repo : https://github.com/scikit-learn/scikit-learn
# Tested on : UBI 8.5
# Language : Python
# Travis-Check : True
# Travis-Check : False
# Script License: Apache License, Version 2 or later
# Maintainer : Valen Mascarenhas <Valen.Mascarenhas@ibm.com>
#