Is there a specific reason to undef HOST_NOT_FOUND? #94 #77
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: MacOS | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Setup python" | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: "Setup flex, bison" | |
run: | | |
brew install flex bison | |
echo "/usr/local/opt/flex/bin" >> $GITHUB_PATH | |
echo "/usr/local/opt/bison/bin" >> $GITHUB_PATH | |
- name: "Setup cmake" | |
run: cmake --version | |
- name: "Setup gil" | |
run: | | |
pip3 install gil | |
gil update | |
- name: "Build" | |
run: | | |
cd build | |
./unix.sh |