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 | 8eedc8a390c73112af9fff712a47c2c1814bc16a (diff) | |
| download | monzero-core-a3bddcd7f36eca06606a4678e2668d12cce54b8f.tar.gz monzero-core-a3bddcd7f36eca06606a4678e2668d12cce54b8f.tar.xz monzero-core-a3bddcd7f36eca06606a4678e2668d12cce54b8f.zip | |
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 |
