Dev #101
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test build | |
on: [ pull_request ] | |
env: | |
MODULE_NAME: imops | |
jobs: | |
build_wheels: | |
strategy: | |
matrix: | |
os: [ubuntu-20.04, windows-2019, macOS-11 ] | |
name: Build wheels on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
- name: Install cibuildwheel | |
run: python -m pip install cibuildwheel==2.16.2 | |
- name: Install gcc for mac | |
if: matrix.os == 'macOS-11' | |
run: | | |
brew install llvm libomp | |
echo $PATH | |
ln -sf /usr/local/bin/gcc-11 /usr/local/bin/gcc | |
ln -sf /usr/local/bin/g++-11 /usr/local/bin/g++ | |
ls /usr/local/bin/gcc* | |
ls /usr/local/bin/g++* | |
gcc --version | |
g++ --version | |
- name: Install g++-11 for ubuntu | |
if: matrix.os == 'ubuntu-20.04' | |
id: install_cc | |
uses: rlalik/setup-cpp-compiler@master | |
with: | |
compiler: g++-11 | |
- name: Check compilers for ubuntu | |
if: matrix.os == 'ubuntu-20.04' | |
run: | | |
ls /usr/bin/gcc* | |
ls /usr/bin/g++* | |
sudo ln -sf /usr/bin/gcc-11 /usr/bin/gcc | |
sudo ln -sf /usr/bin/g++-11 /usr/bin/g++ | |
g++ --version | |
gcc --version | |
- name: Build wheels | |
run: | | |
python -m pip install --upgrade pip | |
python -m cibuildwheel --output-dir wheelhouse | |
env: | |
CIBW_ARCHS_MACOS: "x86_64 arm64" | |
CIBW_ENVIRONMENT_MACOS: > | |
PATH="/usr/local/opt/llvm/bin:$PATH" LDFLAGS="-L/usr/local/opt/llvm/lib" CPPFLAGS="-I/usr/local/opt/llvm/include" | |
CIBW_BUILD: cp39-* cp36-* | |
CIBW_SKIP: "*musllinux* *manylinux_x86_64" | |
CIBW_BEFORE_BUILD_LINUX: 'if [ $(python -c "import sys; print(sys.version_info[1])") -ge 9 ]; then python -m pip install "numpy<2.0.0" --config-settings=setup-args="-Dallow-noblas=true"; fi' |