diff options
author | selsta <selsta@sent.at> | 2020-02-02 00:51:37 +0100 |
---|---|---|
committer | selsta <selsta@sent.at> | 2020-02-02 00:53:29 +0100 |
commit | a3bddcd7f36eca06606a4678e2668d12cce54b8f (patch) | |
tree | 5aa072686dbcd1500eef0c35aedbfb0f9bde598c /.github | |
parent | Merge pull request #6140 (diff) | |
download | monero-a3bddcd7f36eca06606a4678e2668d12cce54b8f.tar.xz |
workflows: add libwallet compile check
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 |