proper cmake package config #33
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: Build macOS | |
on: [push, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: macos-11 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install basic dependencies | |
run: brew install automake autoconf libtool bison flex | |
- name: Build dependencies | |
shell: bash | |
run: | | |
export PATH=/usr/local/opt/flex/bin:/usr/local/opt/bison/bin:${PATH} | |
cd ci-scripts | |
./install-deps.sh prefix 6 | |
- name: Build LatAnalyze | |
shell: bash | |
run: | | |
export PATH=/usr/local/opt/flex/bin:/usr/local/opt/bison/bin:${PATH} | |
cd ci-scripts | |
./install-latan.sh prefix 6 |