From 9f548f88511d1281254b679f79a1dd108db3cc48 Mon Sep 17 00:00:00 2001 From: Werner Van Geit Date: Wed, 27 Dec 2023 10:15:01 +0100 Subject: [PATCH] Disable musllinux --- .github/workflows/build-wheels.yml | 1 + Makefile | 2 +- pyproject.toml | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-wheels.yml b/.github/workflows/build-wheels.yml index 1600131..4b01fad 100644 --- a/.github/workflows/build-wheels.yml +++ b/.github/workflows/build-wheels.yml @@ -32,4 +32,5 @@ jobs: - name: Upload wheels uses: actions/upload-artifact@v3 with: + name: wheels-${{ matrix.os }}-${{ matrix.python }}-${{ matrix.arch }} path: wheelhouse/*.whl diff --git a/Makefile b/Makefile index 10ff7a3..52df720 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ all: -wheel: clean +wheel: cache-clean clean CIBW_BUILD=cp38*x86_64 CIBW_BUILD_VERBOSITY=10 CIBW_SKIP="*musllinux*" cibuildwheel --platform linux install: diff --git a/pyproject.toml b/pyproject.toml index 20094bf..e40ee6d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,6 +14,8 @@ before-build = ["pip install auditwheel --upgrade", "pip install numpy", "pip in before-all = ["yum install -y lapack-static boost169-static blas-static python3-devel.x86_64"] repair-wheel-command = "auditwheel repair -w {dest_dir} {wheel} && ./scripts/fix_wheel.sh {dest_dir}" +build-verbosity = 2 +skip = "*-musllinux_*" # [tool.py-build-cmake.sdist] # include = ["dakota/*", "CMakeLists.txt", "LICENSE.txt"]