mac protobuf #6
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: '[Full Build] MacOs' | |
on: [push] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Brew install base dependencies | |
run: brew install automake berkeley-db4 libtool [email protected] miniupnpc qt@5 openssl pkg-config protobuf@21 python libevent qrencode librsvg | |
- name: Brew link dependencies | |
run: brew link [email protected] | |
- name: Auto generate | |
run: ./autogen.sh | |
- name: configure | |
run: ./configure --disable-bench --disable-tests --disable-dependency-tracking --disable-werror --bindir=`pwd`/release/bin --libdir=`pwd`/release/lib | |
- name: make | |
run: make -j4 | |
- name: make check | |
run: make check -j4 |