Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use (beta) IRAF installer package on macOS #165

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions .github/workflows/citest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ jobs:
- name: macOS 13, pip
os: macos-13
method: pip
iraf: /Users/runner/work/iraf/
iraf: /usr/local/lib/iraf/
irafpkg: https://github.com/iraf-community/iraf-mac-build/releases/download/v2.17.1-beta/iraf-2.17.1-beta-x86_64.pkg


steps:
- name: Checkout repository
Expand Down Expand Up @@ -65,12 +67,8 @@ jobs:
- name: Setup dependencies, Mac
if: startsWith(matrix.os, 'macos') && matrix.method == 'pip'
run: |
mkdir $iraf
curl https://cloud.aip.de/index.php/s/iPj7LGxbRedYnqa/download/iraf-macintel.tar.gz | tar -C $iraf -x -z
(cd $iraf ; ./install < /dev/null || true)
export PATH=${HOME}/.iraf/bin:${PATH}
mkiraf -t=$TERM -n
echo "PATH=$PATH" >> $GITHUB_ENV
wget ${{ matrix.irafpkg }}
sudo installer -pkg iraf-*.pkg -target /

- name: Build PyRAF locally
if: matrix.method == 'native'
Expand Down
Loading