gitlab CI: correct some meson builddirs

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
Peter Hutterer 2020-02-20 16:35:37 +10:00
parent f7ef246635
commit 283dfc07f9
2 changed files with 8 additions and 8 deletions

View file

@ -83,7 +83,7 @@ variables:
artifacts:
paths:
- _build/test/test-suite.log
- builddir/meson-logs/testlog*.txt
- $MESON_BUILDDIR/meson-logs/
expire_in: 1 week
when: on_failure
reports:
@ -105,10 +105,10 @@ variables:
extends:
- .default_artifacts
script:
- meson builddir $MESON_ARGS
- ninja -C builddir $NINJA_ARGS
- meson "$MESON_BUILDDIR" $MESON_ARGS
- ninja -C "$MESON_BUILDDIR" $NINJA_ARGS
- if ! [[ -z '$MESON_TEST_ARGS' ]]; then
meson test -C builddir $MESON_TEST_ARGS;
meson test -C "$MESON_BUILDDIR" $MESON_TEST_ARGS;
fi
#################################################################

View file

@ -83,7 +83,7 @@ variables:
artifacts:
paths:
- _build/test/test-suite.log
- builddir/meson-logs/testlog*.txt
- $MESON_BUILDDIR/meson-logs/
expire_in: 1 week
when: on_failure
reports:
@ -105,10 +105,10 @@ variables:
extends:
- .default_artifacts
script:
- meson builddir $MESON_ARGS
- ninja -C builddir $NINJA_ARGS
- meson "$MESON_BUILDDIR" $MESON_ARGS
- ninja -C "$MESON_BUILDDIR" $NINJA_ARGS
- if ! [[ -z '$MESON_TEST_ARGS' ]]; then
meson test -C builddir $MESON_TEST_ARGS;
meson test -C "$MESON_BUILDDIR" $MESON_TEST_ARGS;
fi
#################################################################