ci: add basic darwin workflow #10
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: Darwin | |
on: | |
push: | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: brew install automake bzip2 cmake git gpatch gnutls ossp-uuid grep libtool | |
- name: Build | |
run: | | |
export PATH="/opt/homebrew/opt/grep/libexec/gnubin:$PATH" | |
make | |
- name: Show version | |
run: ./src/proxysql --version |