Cleaned windows workflow, switched to macos12 (hopefully intel) #96
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: MacOS Build | |
on: | |
push: | |
branches: [ dev, itk_update ] | |
tags: | |
- v* | |
pull_request: | |
branches: [ dev ] | |
workflow_dispatch: | |
jobs: | |
example_matrix: | |
strategy: | |
matrix: | |
os: [macos-latest, macos-12] | |
python-version: ["3.8", "3.9", "3.10", "3.11"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up python versions ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Checkout submodules | |
run: | | |
git submodule init | |
git submodule update | |
- name: Build zlib | |
run: | | |
git clone https://github.com/madler/zlib.git | |
mkdir zlib-build | |
cd zlib-build | |
cmake ../zlib -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=../zlib-install | |
make install | |
cd .. | |
- name: Build ITK | |
run: | | |
mkdir ITK-build | |
cd ITK-build | |
cmake \ | |
-DBUILD_SHARED_LIBS=OFF \ | |
-DBUILD_TESTING=OFF \ | |
-DBUILD_EXAMPLES=OFF \ | |
-DCMAKE_BUILD_TYPE=Release \ | |
-DCMAKE_INSTALL_PREFIX=../ITK-install \ | |
../ITK | |
make install | |
cd .. | |
- name: Detect if arm and set build variable if yes | |
if: runner.arch == 'ARM64' || runner.arch == 'ARM64' | |
run: | | |
IS_ARM=ON | |
- name: Build samseg for python version ${{ matrix.python-version }} and test | |
run: | | |
python -m pip wheel . -w ./dist --no-deps | |
python -m pip install samseg -f dist/ | |
python -m pip install pytest | |
python -m pip install tensorflow | |
python -m pytest samseg/tests | |
rm samseg/gems/*.so | |
env: | |
ITK_DIR: ITK-install | |
ZLIB_INCLUDE_DIR: zlib-install/include | |
ZLIB_LIBRARY: zlib-install/lib/libz.a | |
APPLE_ARM64: $IS_ARM | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: macos-wheels | |
path: dist/*.whl | |
- name: Upload to PyPI | |
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags') }} | |
run: | | |
$PYTHON -m pip install twine | |
$PYTHON -m twine upload dist/*.whl -u __token__ -p "$PASSWORD" | |
env: | |
PASSWORD: ${{ secrets.PYPI_TOKEN }} | |
PYTHON: /Library/Frameworks/Python.framework/Versions/3.8/bin/python3 |