Get rid of warnings buiklding on MacOS #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: MacOS CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
- name: configure | |
# Brew doesn't symlink openssl into system directories so we have to tell cmake where it is | |
run: export OPENSSL_ROOT_DIR=`brew --prefix openssl@3` && cmake . | |
- name: make | |
run: make | |