From 8cf0aaa4b0b4703ec8860f98493b367d4d87fe3d Mon Sep 17 00:00:00 2001 From: sdixon Date: Sun, 14 Apr 2024 05:16:14 +0100 Subject: [PATCH] trying to get cibuildwheel to run from pyuda install location, instead of default project root directory --- .github/workflows/build_wheels.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 6c90ea4f..b9e9e9c8 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -91,7 +91,8 @@ jobs: if: startswith(matrix.build-platform[2], 'manylinux_2_28') uses: pypa/cibuildwheel@v2.17.0 with: - package-dir: /usr/local/python_installer + # package-dir: /usr/local/python_installer + package-dir: ./source/wrappers/python config-file: ./source/wrappers/python/pyproject.toml env: CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28 @@ -111,6 +112,7 @@ jobs: -DSSLAUTHENTICATION=OFF -DENABLE_CAPNP=ON -DCLIENT_ONLY=ON && cmake --build build -j --config Release --target install && + cp -r /usr/local/python_installer/* /project/source/wrappers/python/ - uses: actions/upload-artifact@v4 with: name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}