Skip to content

Commit

Permalink
Merge d08e3e1 into 067df12
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuacwnewton authored Oct 18, 2022
2 parents 067df12 + d08e3e1 commit 28506f7
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/package-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,25 @@ jobs:
mkdir -p pkg && cp -rp spinalcordtoolbox-ants/sct-apps/* pkg/
mkdir -p pkg/copyright
mv pkg/COPYING.txt pkg/copyright/LICENSE_ANTs.txt
# upstream: hhttps://github.com/biomedia-mira/stitching
- name: get stitching
run: |
case "${{ matrix.os }}" in
linux)
URL="https://github.com/spinalcordtoolbox/build_biomedia_stitching/releases/download/r20221018/stitching_ubuntu-18.04.tar.gz"
;;
osx)
URL="https://github.com/spinalcordtoolbox/build_biomedia_stitching/releases/download/r20221018/stitching_macos-10.15.tar.gz"
;;
windows)
URL="https://github.com/spinalcordtoolbox/build_biomedia_stitching/releases/download/r20221018/stitching_windows-2019.tar.gz"
;;
esac
curl -L "$URL" -o stitching.tar.gz
mkdir -p stitching && tar -zxvf stitching.tar.gz -C stitching
mkdir -p pkg && cp -rp stitching/archive/* pkg/
# upstream: https://github.com/neuropoly/spinalcordtoolbox/blob/master/dev/{isct_propseg,isct_dice_coefficient}
- name: get spinalcordtoolbox-dev
Expand Down

0 comments on commit 28506f7

Please sign in to comment.