Add multiple threads for CI actions

This commit is contained in:
Lee *!* Clagett 2023-08-04 14:03:54 -04:00 committed by GitHub
parent c8dd82de7a
commit af7de768e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -41,7 +41,7 @@ jobs:
run: cmake -B ${{github.workspace}}/monero/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} ${{github.workspace}}/monero
- name: Build Monero
run: cd ${{github.workspace}}/monero/build && make daemon lmdb_lib multisig
run: cd ${{github.workspace}}/monero/build && make -j$(nproc) daemon lmdb_lib multisig
- uses: actions/checkout@v3
with:
@ -54,7 +54,7 @@ jobs:
- name: Build LWS
# Build your program with the given configuration
run: (cd ${{github.workspace}}/lws/build && make)
run: (cd ${{github.workspace}}/lws/build && make -j$(nproc))
- name: Run Tests
run: cd ${{github.workspace}}/lws/build && ctest