summaryrefslogtreecommitdiff
path: root/.gitlab-ci/run-tests.sh
blob: 2faadbf822c60771a6052253aaca0f7c71d6c194 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

set +e

meson test -C _build

exit_code=$?

python3 .gitlab-ci/meson-junit-report.py \
        --project-name=librest \
        --job-id "${CI_JOB_NAME}" \
        --output "_build/${CI_JOB_NAME}-report.xml" \
        _build/meson-logs/testlog.json

exit $exit_code