diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 54c92823cff17..328eeedab126a 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -275,6 +275,10 @@ jobs: # For -Wno-error=unreachable-code, please refer to https://github.com/bitcoin/bitcoin/issues/29334 configure_env: 'env CXXFLAGS="-Wno-error=unreachable-code"' configure_options: '-DWERROR=ON' + - name: 'Linux 64-bit, multiprocess' + triplet: 'x86_64-pc-linux-gnu' + depends_options: 'MULTIPROCESS=1' + configure_options: '-DWERROR=ON' - name: 'MinGW-w64' triplet: 'x86_64-w64-mingw32' packages: 'g++-mingw-w64-x86-64-posix' @@ -366,7 +370,7 @@ jobs: key: ${{ matrix.host.triplet }}${{ matrix.host.cache_suffix }}-ccache-${{ github.run_id }} - name: Test - if: ${{ matrix.host.triplet == 'i686-pc-linux-gnu' }} + if: ${{ matrix.host.triplet == 'i686-pc-linux-gnu' || matrix.host.triplet == 'x86_64-pc-linux-gnu' }} run: | ctest --test-dir build -j $(nproc)