change from 11 to 14 #16
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: '[Daemon/Node-Only - No GUI] 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 openssl pkg-config protobuf 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 --without-gui --bindir=`pwd`/release/bin --libdir=`pwd`/release/lib | |
- name: make | |
run: make -j4 | |
- name: make check | |
run: make check -j4 | |