Merge pull request #50 from flightaware/BCK-6946 #44
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 autoconf libpq | |
- name: configure | |
run: | | |
autoreconf -vi | |
export PG_CONFIG=/opt/homebrew/opt/libpq/bin/pg_config | |
./configure --with-tcl=/opt/homebrew/opt/tcl-tk/lib/ --prefix=/usr/local | |
- name: make | |
run: make | |
- name: install | |
run: sudo make install | |