update torver #434
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: '[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 bison byacc automake cmake curl g++-multilib bison byacc 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 |