diff options
author | luigi1111 <luigi1111w@gmail.com> | 2020-02-26 14:14:22 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2020-02-26 14:14:22 -0500 |
commit | f0afa7ddac41ab24375421ac74f7c4988866841f (patch) | |
tree | 3b83cf2a265e722e7fc10890655743cf8034e593 /.github | |
parent | Merge pull request #6198 (diff) | |
parent | workflows: add libwallet compile check (diff) | |
download | monero-f0afa7ddac41ab24375421ac74f7c4988866841f.tar.xz |
Merge pull request #6315
a3bddcd workflows: add libwallet compile check (selsta)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 50297e146..33c9c379b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -43,6 +43,21 @@ jobs: - name: build run: make -j3 + libwallet-ubuntu: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + with: + submodules: recursive + - name: remove bundled boost + run: sudo rm -rf /usr/local/share/boost + - name: update apt + run: sudo apt update + - name: install monero dependencies + run: sudo apt -y install build-essential cmake libboost-all-dev miniupnpc libunbound-dev graphviz doxygen libunwind8-dev pkg-config libssl-dev libzmq3-dev libsodium-dev libhidapi-dev libnorm-dev libusb-1.0-0-dev libpgm-dev + - name: build + run: cmake -DBUILD_GUI_DEPS=ON && make -j3 + test-ubuntu: needs: build-ubuntu runs-on: ubuntu-latest |