mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-08 17:50:10 +00:00
704a659438
This will let us run sysprof-based performance tests.
57 lines
1.1 KiB
Bash
Executable File
57 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
srcdir=$(pwd)
|
|
|
|
mkdir -p _ccache
|
|
export CCACHE_BASEDIR="$(pwd)"
|
|
export CCACHE_DIR="${CCACHE_BASEDIR}/_ccache"
|
|
|
|
ccache --zero-stats
|
|
ccache --show-stats
|
|
export CCACHE_DISABLE=true
|
|
meson \
|
|
-Dx11-backend=true \
|
|
-Dwayland-backend=true \
|
|
-Dbroadway-backend=true \
|
|
-Dvulkan=yes \
|
|
-Dprofiler=true \
|
|
--werror \
|
|
${EXTRA_MESON_FLAGS:-} \
|
|
_build $srcdir
|
|
unset CCACHE_DISABLE
|
|
|
|
cd _build
|
|
|
|
ninja
|
|
ccache --show-stats
|
|
|
|
set +e
|
|
|
|
xvfb-run -a -s "-screen 0 1024x768x24" \
|
|
meson test \
|
|
--timeout-multiplier 2 \
|
|
--print-errorlogs \
|
|
--suite=gtk \
|
|
--no-suite=gtk:a11y
|
|
|
|
# Save the exit code
|
|
exit_code=$?
|
|
|
|
# We always want to run the report generators
|
|
$srcdir/.gitlab-ci/meson-junit-report.py \
|
|
--project-name=gtk \
|
|
--job-id="${CI_JOB_NAME}" \
|
|
--output=report.xml \
|
|
meson-logs/testlog.json
|
|
|
|
$srcdir/.gitlab-ci/meson-html-report.py \
|
|
--project-name=GTK \
|
|
--job-id="${CI_JOB_NAME}" \
|
|
--reftest-output-dir="testsuite/reftests/output" \
|
|
--output=report.html \
|
|
meson-logs/testlog.json
|
|
|
|
exit $exit_code
|