Fix tests #17
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: 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 || brew upgrade tcl-tk | |
brew install readline || brew upgrade readline | |
brew install autoconf || brew upgrade autoconf | |
brew install automake || brew upgrade automake | |
- name: configure | |
run: | | |
autoreconf -vif | |
./configure --with-readline-includes=/opt/homebrew/opt/readline/8.1/include --with-readline-library=/opt/homebrew/opt/readline/8.1/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 | |