Skip to content

Fix tests

Fix tests #21

Workflow file for this run

name: Mac CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
brew update
brew install tcl-tk readline autoconf automake libtool
- name: configure
run: |
glibtoolize
autoreconf -vif
ls -lR /opt/homebrew/opt/readline
./configure --with-readline-includes=/opt/homebrew/opt/readline/8.2/include --with-readline-library=/opt/homebrew/opt/readline/8.2/lib --with-tcl=/opt/homebrew/opt/tcl-tk/lib --with-tcl-includes=/opt/homebrew/opt/tcl-tk/include
- name: make
run: make
- name: install
run: sudo make install