diff --git a/.github/workflows/python-wheel-build.yml b/.github/workflows/python-wheel-build.yml index fecc1b37f..8abcb78f9 100644 --- a/.github/workflows/python-wheel-build.yml +++ b/.github/workflows/python-wheel-build.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: # os: [ubuntu-20.04, windows-2022, macos-13] - os: [ubuntu-20.04, macos-13] + os: [ubuntu-20.04] steps: - uses: actions/checkout@v3 @@ -24,15 +24,16 @@ jobs: - name: Build wheels run: python -m cibuildwheel --output-dir wheelhouse env: - CIBW_BEFORE_ALL_LINUX: yum install -y wget - CIBW_BEFORE_ALL: > - 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 .. + # CIBW_BEFORE_ALL_LINUX: yum install -y wget + CIBW_BEFORE_LINUX: > + 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 &&