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 | |
| parent | 39e18902763a5fd6f355294d8b135c8f5bc2ec99 (diff) | |
| parent | a3bddcd7f36eca06606a4678e2668d12cce54b8f (diff) | |
| download | monzero-core-f0afa7ddac41ab24375421ac74f7c4988866841f.tar.gz monzero-core-f0afa7ddac41ab24375421ac74f7c4988866841f.tar.xz monzero-core-f0afa7ddac41ab24375421ac74f7c4988866841f.zip | |
Merge pull request #6315
a3bddcd workflows: add libwallet compile check (selsta)
| -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 |
