Update gcc version in linux-ci.yml #6
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 || true | |
brew install yajl | |
sudo mkdir -p /usr/local | |
sudo ln -sf /usr/local/opt/tcl-tk/include /usr/local/include/tcl8.6 | |
sudo cp /usr/local/opt/tcl-tk/lib/libtcl* /usr/local/lib | |
sudo ln -sf /usr/local/opt/tcl-tk/bin/tclsh8.6 /usr/local/bin/tclsh | |
sudo ln -sf /usr/local/opt/tcl-tk/bin/tclsh8.6 /usr/local/bin/tclsh8.6 | |
- name: configure | |
run: | | |
autoreconf -vi | |
./configure --with-tcl=/usr/local/opt/tcl-tk/lib --prefix=/usr/local | |
- name: make | |
run: make | |
- name: install | |
run: sudo make install | |
- name: make test | |
run: make test | |