Moved to using GitHub hosted macOS ARM build; fixed pip install timeout issue in CIs; ARM tests for python 3.8-3.12 #3
Workflow file for this run
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: Build macOS ARM | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: [master, release] | |
workflow_dispatch: | |
env: | |
MACOSX_DEPLOYMENT_TARGET: 11.0 | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os: macos-14 | |
TARGET: macos | |
CMD_BUILD: python3 setup.py bdist_wheel --plat-name macosx_11_0_arm64 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: arch -arm64 brew reinstall zlib | |
- name: Setup pyenv | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: true | |
MACOSX_DEPLOYMENT_TARGET: 11.0 | |
PYTHON_CONFIGURE_OPTS: "--enable-framework" | |
CFLAGS: "-Wno-implicit-function-declaration" | |
LDFLAGS: "-L/usr/local/opt/zlib/lib" | |
CPPFLAGS: "-I/usr/local/opt/zlib/include" | |
PKG_CONFIG_PATH: "/usr/local/opt/zlib/lib/pkgconfig" | |
uses: "gabrielfalcao/pyenv-action@v13" | |
with: | |
default: "3.8" | |
command: pip3 install -U pip3 wheel setuptools | |
- name: Collect submodules | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Download ANTs | |
uses: robinraju/release-downloader@main | |
with: | |
repository: "raidionics/Raidionics-dependencies" | |
latest: true | |
fileName: "ANTsX-v2.4.3_macos_arm.tar.gz" | |
out-file-path: "downloads" | |
- name: Extract ANTs | |
run: | | |
cd ${{github.workspace}}/downloads/ | |
tar -xzf ANTsX-v2.4.3_macos_arm.tar.gz -C ${{github.workspace}}/downloads/ | |
mv ${{github.workspace}}/downloads/install ${{github.workspace}}/raidionicsrads/ANTs/ | |
- name: Built wheel for ${{matrix.TARGET}} | |
run: ${{matrix.CMD_BUILD}} | |
- name: Upload Python wheel | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Python wheel | |
path: ${{github.workspace}}/dist/raidionicsmaps-*.whl | |
if-no-files-found: error | |
test: | |
needs: build | |
strategy: | |
matrix: | |
os: [ macos-14 ] | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Set up pyenv using Python ${{ matrix.python-version }} | |
uses: "gabrielfalcao/pyenv-action@v13" | |
with: | |
default: ${{ matrix.python-version }} | |
command: pip3 install -U pip3 wheel setuptools | |
- name: Download artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: "Python wheel" | |
- name: Install wheel | |
run: pip3 install --default-timeout=100 --find-links=${{github.workspace}} raidionicsmaps-* | |
shell: bash | |
- name: Test CLI | |
run: raidionicsmaps --help | |
- name: Clone repo | |
uses: actions/checkout@v1 | |
- name: Heatmap computation unit test | |
run: cd ${{github.workspace}}/tests && python3 heatmap_generation_test.py |