Merge pull request #229 from saltedlolly/rename-satoshi-in-qt #345
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: 'Build & Check: macOS No QT & No Tests' | |
on: [push] | |
jobs: | |
build: | |
runs-on: macos-10.15 | |
strategy: | |
matrix: | |
os: [x86_64-mac] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Brew Install Dependencies | |
run: brew install automake [email protected] berkeley-db@4 qt@5 miniupnpc libnatpmp zeromq librsvg openssl pandoc | |
- name: Brew Link OpenSSL | |
run: brew link openssl --force | |
- name: Brew Link Boost | |
run: brew link [email protected] --force | |
- name: Brew Link BDB | |
run: brew link berkeley-db@4 --force | |
- name: Brew Force Link Openssl | |
run: export LDFLAGS="-L/usr/local/opt/openssl/lib -L/usr/local/lib -L/usr/local/opt/expat/lib" && export CFLAGS="-I/usr/local/opt/openssl/include/ -I/usr/local/include -I/usr/local/opt/expat/include" && export CPPFLAGS="-I/usr/local/opt/openssl/include/ -I/usr/local/include -I/usr/local/opt/expat/include" | |
- name: Install pypandoc | |
run: pip3 install pypandoc | |
- name: Install scrypt for Python3 | |
run: pip3 install digibyte_scrypt | |
- name: Auto Generate | |
run: ./autogen.sh | |
- name: Configure | |
run: ./configure --without-gui --disable-tests | |
- name: Make | |
run: make -j3 | |
- name: Make Check | |
run: make check | |
- name: Upload Test Suite Log | |
uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: test-suite-log | |
path: /src/test-suite.log |