Skip to content

Commit

Permalink
Fixed ANTs build in ARM
Browse files Browse the repository at this point in the history
  • Loading branch information
andreped committed Feb 2, 2024
1 parent eedeabb commit 82b9884
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/build_macos_arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,20 @@ jobs:
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: Install dependencies
- name: Extract ANTs
run: |
python3 -m pip install --upgrade pip
pip install wheel setuptools
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}}
Expand Down

0 comments on commit 82b9884

Please sign in to comment.