mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 19:36:18 +01:00
19 lines
377 B
Bash
19 lines
377 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set +e
|
||
|
|
||
|
meson test \
|
||
|
-C _build \
|
||
|
--timeout-multiplier ${MESON_TEST_TIMEOUT_MULTIPLIER} \
|
||
|
--no-suite flaky
|
||
|
|
||
|
exit_code=$?
|
||
|
|
||
|
python3 .gitlab-ci/meson-junit-report.py \
|
||
|
--project-name=glib \
|
||
|
--job-id "${CI_JOB_NAME}" \
|
||
|
--output "_build/${CI_JOB_NAME}-report.xml" \
|
||
|
_build/meson-logs/testlog.json
|
||
|
|
||
|
exit $exit_code
|