fix strMessageMagic to suit dimecoin #178
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 Dime Protocol(x86_64-linux-gnu): No QT & No Tests' | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
os: [x86_64-linux-gnu] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Get Dependencies | |
run: sudo apt update && sudo apt-get install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils python3 libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-test-dev libboost-thread-dev libboost-dev libsqlite3-dev libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libqrencode-dev software-properties-common pandoc | |
- name: Install BerkleyDB | |
run: ./contrib/install_db4.sh `pwd` --enable-cxx | |
- name: Auto Generate | |
run: ./autogen.sh | |
- name: Configure | |
run: export BDB_PREFIX="${PWD}/db4" && ./configure BDB_LIBS="-L${BDB_PREFIX}/lib -ldb_cxx-4.8" BDB_CFLAGS="-I${BDB_PREFIX}/include" --without-gui --disable-tests | |
- name: Make | |
run: make -j4 | |
- 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 |