Bump docker/setup-qemu-action from 2 to 3 #3
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: C/C++ CI MacOS | |
on: | |
push: | |
branches: [ $default-branch ] | |
pull_request: | |
types: [ opened, reopened, synchronize ] | |
jobs: | |
builds: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
# Unlink and re-link to prevent errors when github mac runner images | |
# install python outside of brew, for example: | |
# https://github.com/orgs/Homebrew/discussions/3895 | |
# https://github.com/actions/setup-python/issues/577 | |
# https://github.com/actions/runner-images/issues/6459 | |
# https://github.com/actions/runner-images/issues/6507 | |
# https://github.com/actions/runner-images/issues/2322 | |
brew list -1 | grep python | while read formula; do brew unlink $formula; brew link --overwrite $formula; done | |
brew update | |
brew install \ | |
wget \ | |
pkg-config \ | |
libevent \ | |
[email protected] \ | |
sqlite \ | |
hiredis \ | |
mongo-c-driver \ | |
libmicrohttpd | |
- name: configure | |
run: PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/opt/[email protected]/lib/pkgconfig ./configure | |
- name: make | |
run: make | |
- name: make check | |
run: make check | |
- name: apps tests | |
run: cd examples && ./run_tests.sh |