-
Notifications
You must be signed in to change notification settings - Fork 395
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Check if wallet is enabled and add wallet inclusion (#997)
* Check if wallet is enabled and add wallet inclusion * Add new test cases for the wallet tests * Add ubuntu repo updates for github workflows * Disable bdb compiling for no wallet
- Loading branch information
Showing
3 changed files
with
59 additions
and
22 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: '[NO WALLET] Ubuntu 18.04.' | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
|
||
- name: Update apt repos | ||
run: sudo apt-get update | ||
|
||
- name: Install base dependencies | ||
run: sudo apt-get install build-essential libtool autotools-dev automake pkg-config bsdmainutils libattr1-dev make automake cmake curl g++-multilib binutils-gold python3 | ||
|
||
- name: Build depends | ||
run: cd depends/ && make -j4 HOST=x86_64-linux-gnu NO_WALLET=0 | ||
|
||
- name: Auto generate | ||
run: ./autogen.sh | ||
|
||
- name: configure | ||
run: ./configure --disable-wallet --disable-dependency-tracking --disable-werror --prefix=`pwd`/depends/x86_64-linux-gnu --bindir=`pwd`/release/bin --libdir=`pwd`/release/lib | ||
|
||
- name: make | ||
run: make -j4 | ||
|
||
- name: make check | ||
run: make check -j4 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,31 @@ | ||
name: Build and Test on Ubuntu | ||
name: '[FULL] Ubuntu 18.04.' | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
|
||
- name: Install base dependencies | ||
run: sudo apt-get install build-essential libtool autotools-dev automake pkg-config bsdmainutils libattr1-dev make automake cmake curl g++-multilib binutils-gold python3 | ||
|
||
- name: Build depends | ||
run: cd depends/ && make -j4 HOST=x86_64-linux-gnu | ||
|
||
- name: Auto generate | ||
run: ./autogen.sh | ||
|
||
- name: configure | ||
run: ./configure --disable-bench --disable-dependency-tracking --disable-werror --prefix=`pwd`/depends/x86_64-linux-gnu --bindir=`pwd`/release/bin --libdir=`pwd`/release/lib | ||
|
||
- name: make | ||
run: make -j4 | ||
|
||
- name: make check | ||
run: make check -j4 | ||
- uses: actions/checkout@v1 | ||
|
||
- name: Update apt repos | ||
run: sudo apt-get update | ||
|
||
- name: Install base dependencies | ||
run: sudo apt-get install build-essential libtool autotools-dev automake pkg-config bsdmainutils libattr1-dev make automake cmake curl g++-multilib binutils-gold python3 | ||
|
||
- name: Build depends | ||
run: cd depends/ && make -j4 HOST=x86_64-linux-gnu | ||
|
||
- name: Auto generate | ||
run: ./autogen.sh | ||
|
||
- name: configure | ||
run: ./configure --disable-dependency-tracking --disable-werror --prefix=`pwd`/depends/x86_64-linux-gnu --bindir=`pwd`/release/bin --libdir=`pwd`/release/lib | ||
|
||
- name: make | ||
run: make -j4 | ||
|
||
- name: make check | ||
run: make check -j4 |
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