Skip to content

Commit

Permalink
iterating [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkerl committed Nov 20, 2024
1 parent 39d690b commit 1472d11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/python-packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
CIBW_BUILD: ${{ matrix.cibw_build }}
CIBW_BUILD_VERBOSITY: 3
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28
CIBW_BEFORE_BUILD: echo 'UNAME IS'; uname; if [ `uname` = "Linux" ]; then echo "I AM DOING YUM INSTALL"; yum install gcc-toolset-13-gcc.x86_64; yum install gcc-toolset-13-gcc-c++.x86_64; echo 'FIND START'; find '/opt/rh/gcc-toolset-*' -name g++; echo 'FIND END'; fi; echo 'WHICH START'; which g++; echo 'WHICH END'; echo "LS -L START"; ls -l /usr/bin/g++; echo "LS -L END"; bash -x -c 'rm -rf tiledbsoma*/dist_links/dist/lib*'
CIBW_BEFORE_BUILD: echo 'UNAME IS'; uname; if [ `uname` = "Linux" ]; then echo "I AM DOING YUM INSTALL"; yum install -y gcc-toolset-13-gcc.x86_64; yum install -y gcc-toolset-13-gcc-c++.x86_64; echo 'FIND START'; find '/opt/rh/gcc-toolset-*' -name g++ -exec -ls -l {} \; ; echo 'FIND END'; fi; echo 'WHICH START'; which g++; echo 'WHICH END'; echo "LS -L START"; ls -l /usr/bin/g++; echo "LS -L END"; bash -x -c 'rm -rf tiledbsoma*/dist_links/dist/lib*'
# ^ Delete lib folder that apis/python/setup.py:find_or_build() looks for in deciding to
# run CMake build or not. Otherwise it'll keep reusing the library file built in the
# first iteration of cibuildwheel's outer loop, resulting in wheels with the library
Expand Down

0 comments on commit 1472d11

Please sign in to comment.