diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 724b8104f..5c03cf49f 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -41,13 +41,13 @@ jobs: run: | mkdir build cd build - cmake -DBUILD_AUTOTESTS=ON -DCOVERAGE=ON -DBUILD_BENCHMARKS=OFF -DBUILD_EXAMPLES=OFF .. - make -j2 + cmake -DBUILD_AUTOTESTS=ON -DCOVERAGE=ON -DBUILD_BENCHMARKS=OFF -DBUILD_EXAMPLES=OFF -DBUILD_SANDBOX=OFF .. + make -j4 - name: check run: | cd build - ./xautotest -v -o autotest.json + ./xautotest -q -o autotest.json - name: upload report to codecov with github action uses: codecov/codecov-action@v4 diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 00bc55f31..f9313af35 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -40,7 +40,7 @@ coverage: - rm -rf build - mkdir build - cd build - - cmake -DBUILD_AUTOTESTS=ON -DBUILD_BENCHMARKS=OFF -DBUILD_EXAMPLES=OFF -DBUILD_SANDBOX=OFF -DCOVERAGE=ON .. + - cmake -DBUILD_AUTOTESTS=ON -DCOVERAGE=ON -DBUILD_BENCHMARKS=OFF -DBUILD_EXAMPLES=OFF -DBUILD_SANDBOX=OFF .. - make -j4 - ./xautotest -q -o autotest.json - cd ..