diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c292018..c4cf44f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,7 +72,7 @@ jobs: packages: "" - os: ubuntu-24.04 - cxx: "g++-12" + cxx: "g++" link: "static" optimization: "size" assert: "ndebug" @@ -83,7 +83,7 @@ jobs: llvm: "" secp256k1: "--build-secp256k1" zmq: "--build-zmq" - cc: "gcc-12" + cc: "gcc" flags: "-Os -fPIE" options: "--enable-isystem" packager: "apt" @@ -227,9 +227,9 @@ jobs: - name: Coveralls Calculation if: ${{ matrix.coverage == 'cov' }} run: | - lcov --directory . --capture --ignore-errors version --output-file coverage.info - lcov --remove coverage.info "/usr/*" "${{ env.LIBBITCOIN_SRC_PATH }}prefix/*" "${{ github.workspace }}/examples/*" "${{ github.workspace }}/test/*" --output-file --ignore-errors version coverage.info - lcov --list --ignore-errors version coverage.info + lcov --ignore-errors version,gcov,mismatch --directory . --capture --output-file coverage.info + lcov --ignore-errors unused --remove coverage.info "/usr/*" "${{ env.LIBBITCOIN_SRC_PATH }}prefix/*" "${{ github.workspace }}/examples/*" "${{ github.workspace }}/test/*" --output-file coverage.info + lcov --list coverage.info - name: Coveralls.io Upload if: ${{ matrix.coverage == 'cov' }} @@ -508,9 +508,9 @@ jobs: - name: Coveralls Calculation if: ${{ matrix.coverage == 'cov' }} run: | - lcov --directory . --capture --ignore-errors version --output-file coverage.info - lcov --remove coverage.info "/usr/*" "${{ env.LIBBITCOIN_SRC_PATH }}prefix/*" "${{ github.workspace }}/examples/*" "${{ github.workspace }}/test/*" --output-file --ignore-errors version coverage.info - lcov --list --ignore-errors version coverage.info + lcov --ignore-errors version,gcov,mismatch --directory . --capture --output-file coverage.info + lcov --ignore-errors unused --remove coverage.info "/usr/*" "${{ env.LIBBITCOIN_SRC_PATH }}prefix/*" "${{ github.workspace }}/examples/*" "${{ github.workspace }}/test/*" --output-file coverage.info + lcov --list coverage.info - name: Coveralls.io Upload if: ${{ matrix.coverage == 'cov' }} @@ -749,9 +749,9 @@ jobs: - name: Coveralls Calculation if: ${{ matrix.coverage == 'cov' }} run: | - lcov --directory . --capture --ignore-errors version --output-file coverage.info - lcov --remove coverage.info "/usr/*" "${{ env.LIBBITCOIN_SRC_PATH }}prefix/*" "${{ github.workspace }}/examples/*" "${{ github.workspace }}/test/*" --output-file --ignore-errors version coverage.info - lcov --list --ignore-errors version coverage.info + lcov --ignore-errors version,gcov,mismatch --directory . --capture --output-file coverage.info + lcov --ignore-errors unused --remove coverage.info "/usr/*" "${{ env.LIBBITCOIN_SRC_PATH }}prefix/*" "${{ github.workspace }}/examples/*" "${{ github.workspace }}/test/*" --output-file coverage.info + lcov --list coverage.info - name: Coveralls.io Upload if: ${{ matrix.coverage == 'cov' }}