Fix the installation of the TERMINFO database #390
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: IRAF macOS build | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: ${{ matrix.name }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- name: macOS 12 (Intel) | |
os: macos-12 | |
- name: macOS 14 (M1) | |
os: macos-14 | |
env: | |
TERM: ansi | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup XQuartz on macOS | |
run: | | |
wget https://github.com/XQuartz/XQuartz/releases/download/XQuartz-2.8.1/XQuartz-2.8.1.dmg | |
sudo hdiutil attach XQuartz-2.8.1.dmg | |
sudo installer -package /Volumes/XQuartz-2.8.1/XQuartz.pkg -target / | |
sudo rm -f /usr/local/include/tcl.h | |
- name: Build package | |
run: | | |
make -j 4 | |
- name: Locally test package installation | |
run: | | |
cp iraf-*.pkg /tmp | |
sudo installer -pkg /tmp/iraf-*.pkg -target / -verbose | |
/usr/local/lib/iraf/test/run_tests /usr/local/lib/iraf/test/noao.astutil.md | |
# Check that the TERMINFO files are in place | |
ls -lR /Applications/XGTerm.app/ | |
ls -l /Applications/XGTerm.app/Contents/Resources/terminfo/78/xgterm | |
ls -l /usr/local/share/terminfo/78/xgterm | |
- name: Copy file via ssh | |
env: | |
SSH_AUTH_SOCK: /tmp/ssh_agent.sock | |
run: | | |
ssh-agent -a $SSH_AUTH_SOCK | |
ssh-add -v - <<< "${{ secrets.SSH_KEY }}" | |
scp -o StrictHostKeyChecking=no iraf-*.pkg [email protected]:dist/ | |
- name: Check that the TERMINFO files are in place | |
run: | | |
ls -lR /Applications/XGTerm.app | |
ls -l /Applications/XGTerm.app/Contents/Resources/terminfo/78/xgterm | |
ls -l /usr/local/share/terminfo/78/xgterm |