diff options
author | selsta <selsta@sent.at> | 2021-07-08 04:59:25 +0200 |
---|---|---|
committer | selsta <selsta@sent.at> | 2021-07-08 05:00:01 +0200 |
commit | c26e3ee029fec4341502e3c7915c64deff1a4f5a (patch) | |
tree | c30e240ed595430a43f2589f9df978710b1ed089 /.github/workflows | |
parent | Merge pull request #7743 (diff) | |
download | monero-c26e3ee029fec4341502e3c7915c64deff1a4f5a.tar.xz |
workflows: fix libwallet ci test
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 36eab5027..040670ee8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -112,8 +112,8 @@ jobs: - name: build run: | ccache --max-size=150M - cmake -DBUILD_GUI_DEPS=ON - make -j3 + cmake . + make wallet_api -j3 test-ubuntu: needs: build-ubuntu |