mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-26 07:26:15 +01:00
ci/msys2: fix path to the lcov config file
It was using a relative path to the source directory but we run lcov in the build directory.
This commit is contained in:
parent
035975da09
commit
bf032e3e04
@ -44,7 +44,7 @@ ninja
|
|||||||
|
|
||||||
"${LCOV}" \
|
"${LCOV}" \
|
||||||
--quiet \
|
--quiet \
|
||||||
--config-file .gitlab-ci/lcovrc \
|
--config-file "${DIR}"/.gitlab-ci/lcovrc \
|
||||||
--directory "${DIR}/_build" \
|
--directory "${DIR}/_build" \
|
||||||
--capture \
|
--capture \
|
||||||
--initial \
|
--initial \
|
||||||
@ -55,7 +55,7 @@ meson test --timeout-multiplier ${MESON_TEST_TIMEOUT_MULTIPLIER} || true
|
|||||||
|
|
||||||
"${LCOV}" \
|
"${LCOV}" \
|
||||||
--quiet \
|
--quiet \
|
||||||
--config-file .gitlab-ci/lcovrc \
|
--config-file "${DIR}"/.gitlab-ci/lcovrc \
|
||||||
--directory "${DIR}/_build" \
|
--directory "${DIR}/_build" \
|
||||||
--capture \
|
--capture \
|
||||||
--output-file "${DIR}/_coverage/${CI_JOB_NAME}.lcov"
|
--output-file "${DIR}/_coverage/${CI_JOB_NAME}.lcov"
|
||||||
|
Loading…
Reference in New Issue
Block a user