Skip to content

Commit

Permalink
Let's make it work for mac as well
Browse files Browse the repository at this point in the history
  • Loading branch information
msoos committed Jul 18, 2024
1 parent 1ac3616 commit b416075
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/python-wheel-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,15 @@ jobs:
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
env:
# yum install -y gmp-devel glibc-devel &&
CIBW_BEFORE_ALL: >
yum install -y gmp-devel glibc-devel &&
wget https://ftp.gnu.org/gnu/gmp/gmp-6.3.0.tar.xz &&
tar xf gmp-6.3.0.tar.xz &&
cd gmp-6.3.0 &&
./configure --enable-static -enable-cxx --enable-shared &&
make -j8 &&
make install &&
cd ..
git clone https://github.com/meelgroup/cadical.git &&
cd cadical &&
git checkout add_dynamic_lib &&
Expand Down

0 comments on commit b416075

Please sign in to comment.