Skip to content

Commit

Permalink
Stop building manylinux1 container images
Browse files Browse the repository at this point in the history
  • Loading branch information
webknjaz committed Nov 12, 2022
1 parent 0af2e1e commit 343a97e
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 123 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/build-manylinux-container-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,6 @@ jobs:
- 2014
- _2_24 # PEP 600
include:
- IMAGE:
ARCH: x86_64
QEMU_ARCH: amd64
YEAR: 1
- IMAGE:
ARCH: x86_64
QEMU_ARCH: amd64
Expand Down
3 changes: 0 additions & 3 deletions build-scripts/build-manylinux-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ THIS_SCRIPT_DIR_PATH=$(dirname "$(readlink -m $(type -p "${0}"))")
IMAGE_SCRIPTS_DIR_PATH="${THIS_SCRIPT_DIR_PATH}/manylinux-container-image"

source "${IMAGE_SCRIPTS_DIR_PATH}/get-static-deps-dir.sh"
source "${IMAGE_SCRIPTS_DIR_PATH}/activate-userspace-tools.sh"

SRC_DIR=/io
GIT_DIR="${SRC_DIR}/.git"
Expand Down Expand Up @@ -59,8 +58,6 @@ MANYLINUX_TAG="$(
# Avoid creation of __pycache__/*.py[c|o]
export PYTHONDONTWRITEBYTECODE=1

import_userspace_tools

PIP_GLOBAL_ARGS=
if [ -n "$DEBUG" ]
then
Expand Down
13 changes: 4 additions & 9 deletions build-scripts/manylinux-container-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@ ADD update-packages.sh /root/update-packages.sh
RUN ./update-packages.sh

ADD build_utils.sh /root/build_utils.sh
ADD install_perl.sh /root/install_perl.sh
RUN ./install_perl.sh "${RELEASE}"
ADD install_libffi.sh /root/install_libffi.sh
RUN ./install_libffi.sh "${RELEASE}"
#ADD install_perl.sh /root/install_perl.sh
#RUN ./install_perl.sh "${RELEASE}"
#RUN apt update && apt install -y perl && apt clean
ADD install_openssl.sh /root/install_openssl.sh
ADD openssl-version.sh /root/openssl-version.sh
RUN ./install_openssl.sh "${RELEASE}"
Expand All @@ -21,14 +20,10 @@ ADD install_virtualenv.sh /root/install_virtualenv.sh
RUN ./install_virtualenv.sh

# \pylibssh
ADD install-userspace-tools.sh /root/install-userspace-tools.sh
ADD activate-userspace-tools.sh /root/activate-userspace-tools.sh
RUN ./install-userspace-tools.sh
ADD make-static-deps-dir.sh /root/make-static-deps-dir.sh
ADD get-static-deps-dir.sh /root/get-static-deps-dir.sh
RUN ./make-static-deps-dir.sh
ADD install_zlib.sh /root/install_zlib.sh
RUN ./install_zlib.sh
RUN apt update && apt install -y cmake && apt clean
ADD install_libssh.sh /root/install_libssh.sh
RUN ./install_libssh.sh "${LIBSSH_VERSION}"
# /pylibssh

This file was deleted.

32 changes: 0 additions & 32 deletions build-scripts/manylinux-container-image/install-userspace-tools.sh

This file was deleted.

29 changes: 0 additions & 29 deletions build-scripts/manylinux-container-image/install_libffi.sh

This file was deleted.

3 changes: 0 additions & 3 deletions build-scripts/manylinux-container-image/install_libssh.sh
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,6 @@ git clone \
https://git.libssh.org/projects/${LIB_NAME}.git \
"${LIB_CLONE_DIR}"

source activate-userspace-tools.sh
import_userspace_tools

mkdir -pv "${LIB_BUILD_DIR}"
pushd "${LIB_BUILD_DIR}"
# For some reason, libssh has to be compiled as a shared object.
Expand Down
27 changes: 0 additions & 27 deletions build-scripts/manylinux-container-image/install_zlib.sh

This file was deleted.

0 comments on commit 343a97e

Please sign in to comment.