isapego commented on code in PR #4869:
URL: https://github.com/apache/ignite-3/pull/4869#discussion_r1884079506


##########
modules/platforms/python/scripts/build_wheels.sh:
##########
@@ -0,0 +1,61 @@
+#!/bin/bash
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+set -e -u -x
+
+PACKAGE_NAME=pyignite3
+PY_VERS="cp39 cp310 cp311 cp312 cp313"
+
+function repair_wheel {
+    wheel="$1"
+    if ! auditwheel show "$wheel"; then
+        echo "Skipping non-platform wheel $wheel"
+    else
+        auditwheel repair "$wheel" --plat "$PLAT" -w /wheels
+    fi
+}
+
+for PY_VER in $PY_VERS; do
+    for PYBIN in /opt/python/*/bin; do
+        if [[ $PYBIN =~ ^(.*)$PY_VER/(.*)$ ]]; then
+            echo -e "\e[32m >>> \e[0m"
+            echo -e "\e[32m >>> Preparing a wheel for Python $PYBIN \e[0m"
+            echo -e "\e[32m >>> \e[0m"
+
+            # Compile wheels
+            "${PYBIN}/pip" wheel /$PACKAGE_NAME/ --no-deps -w /wheels
+
+            # Bundle external shared libraries into the wheels
+            for whl in /wheels/*.whl; do
+                if [[ $whl =~ ^(.*)$PY_VER-(.*)$ ]]; then
+                    "${PYBIN}/pip" wheel /$PACKAGE_NAME/ --no-deps -w /wheels
+                    repair_wheel "$whl"
+                fi
+            done
+        fi
+    done
+done
+
+for whl in /wheels/*.whl; do
+    if [[ ! $whl =~ ^(.*)manylinux(.*)$ ]]; then
+        rm "$whl"
+    else
+        chmod 666 "$whl"

Review Comment:
   Fixed by changing the ownership of the resulting files.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@ignite.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to