summaryrefslogtreecommitdiff
path: root/.gitlab-ci
diff options
context:
space:
mode:
authorFlorian Müllner <fmuellner@gnome.org>2021-08-31 19:08:27 +0200
committerFlorian Müllner <fmuellner@gnome.org>2021-09-05 00:15:56 +0200
commit4bbe61d47e3a5bc79c02cd442722c61c722b8647 (patch)
treef0c53d54da9bea64bb013bf494548726a41a8d33 /.gitlab-ci
parentf41b165f9c62c82ec6aab02d49082c2db5b2ea2e (diff)
downloadmutter-4bbe61d47e3a5bc79c02cd442722c61c722b8647.tar.gz
ci: Move test setup into template job
This will allow sharing the setup between test jobs and a future dist job. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1980>
Diffstat (limited to '.gitlab-ci')
-rwxr-xr-x.gitlab-ci/run-tests.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/.gitlab-ci/run-tests.sh b/.gitlab-ci/run-tests.sh
deleted file mode 100755
index 80a84eb55..000000000
--- a/.gitlab-ci/run-tests.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/bash
-
-set -e
-
-dconf update
-glib-compile-schemas $GSETTINGS_SCHEMA_DIR
-
-# Disable e.g. audio support to not dead lock screen cast tests
-rm -f /usr/share/pipewire/media-session.d/with-*
-
-PIPEWIRE_DEBUG=2 PIPEWIRE_LOG="$CI_PROJECT_DIR/build/meson-logs/pipewire.log" \
- pipewire &
-
-sleep 2
-
-meson test -C build --no-rebuild --setup CI
-
-exit_code=$?
-
-exit $exit_code