Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/.licenserc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ header:
- cmake/mkl_functions
- cmake/mkl_functions_ivf
- cmake/patches/tomlplusplus_v330.patch
- docker/x86_64/manylinux2014/oneAPI.repo
- docker/x86_64/manylinux228/oneAPI.repo
- docs/cpp/index/loader-compatibility.csv
- docs/requirements.txt
- AGENTS.md
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cibuildwheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:

- name: Build Container
run: |
cd ${GITHUB_WORKSPACE}/docker/x86_64/manylinux2014
./build.sh
cd ${GITHUB_WORKSPACE}/docker/x86_64/manylinux228
docker build -t svs-manylinux228 .

- name: Install cibuildwheel
run: python -m pip install cibuildwheel
Expand Down
16 changes: 9 additions & 7 deletions bindings/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,10 @@ archs = ["x86_64"]
build-frontend = "pip"
config-settings = {}
dependency-versions = "pinned"
environment.CC = "/opt/rh/devtoolset-11/root/usr/bin/cc"
environment.CXX = "/opt/rh/devtoolset-11/root/usr/bin/c++"
environment.CC = "/opt/rh/gcc-toolset-11/root/usr/bin/cc"
environment.CXX = "/opt/rh/gcc-toolset-11/root/usr/bin/c++"
environment.MKLROOT = "/opt/intel/oneapi/mkl/latest"
environment.CMAKE_PREFIX_PATH = "/opt/intel/oneapi/mkl/latest/lib/cmake"
# Compile multiple versions for difference microarchitectures
environment.SVS_MULTIARCH = "YES"
environment-pass = []
Expand All @@ -45,7 +47,7 @@ build-verbosity = "3"
# Run inside the container because the version of pip used depends on the python version
# we're building for.
before-build = "pip install ninja"
before-all = "yum --disablerepo=epel install -y devtoolset-11-gcc devtoolset-11-gcc-c++"
before-all = "yum install -y gcc-toolset-11"
repair-wheel-command = ""

test-command = ""
Expand All @@ -55,10 +57,10 @@ test-extras = []

container-engine = "docker"

# Requires creation of the `svs-manylinux2014` container image.
# Execute the build script SVS_ROOT/docker/x86_64/manylinux2014/build.sh
manylinux-x86_64-image = "svs-manylinux2014"
manylinux-pypy_x86_64-image = "svs-manylinux2014"
# Requires creation of the `svs-manylinux228` container image.
# Execute: docker build -t svs-manylinux228 SVS_ROOT/docker/x86_64/manylinux228/
manylinux-x86_64-image = "svs-manylinux228"
manylinux-pypy_x86_64-image = "svs-manylinux228"

[tool.cibuildwheel.linux]
repair-wheel-command = "auditwheel repair -w {dest_dir} {wheel}"
28 changes: 0 additions & 28 deletions docker/x86_64/manylinux2014/Dockerfile

This file was deleted.

16 changes: 0 additions & 16 deletions docker/x86_64/manylinux2014/build.sh

This file was deleted.

20 changes: 0 additions & 20 deletions docker/x86_64/manylinux2014/entry.sh

This file was deleted.

Loading