summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan Petridis <jordan@centricular.com>2022-08-02 23:54:37 +0300
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>2022-10-18 09:13:51 +0000
commit1fda929c216e9cc32947cbdd45cd9428ccd42377 (patch)
tree634e3587327fa3d987c3b9f2de98d7b3f652cd01
parenta5ac638337d94fa7245241a6be8e9ef048349dae (diff)
ci: drop gst-inspect check for cross-win jobs
Recent versions of wine have began complaining about not finding an x11 socker, and when provided with one under xvfb/weston xwayland they are hanging. Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/966>
-rw-r--r--.gitlab-ci.yml5
-rwxr-xr-xci/cerbero_setup.sh6
2 files changed, 3 insertions, 8 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f06d2318..1f096ef6 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -131,7 +131,6 @@ android fedora image:
CERBERO_ARGS: "${DEFAULT_CERBERO_ARGS}"
CERBERO: "./cerbero-uninstalled -c config/${CONFIG} -c localconf.cbc"
CERBERO_PACKAGE_ARGS: "-t"
- CERBERO_RUN_WRAPPER: "" # 'wine' on cross-winXX
CERBERO_RUN_SUFFIX: "" # '.exe' on cross-winXX
HAVE_CCACHE: "yes"
# used by macos packages as we only ever install to a fixed directory
@@ -233,14 +232,12 @@ cerbero deps cross-windows x86:
variables:
CONFIG: "cross-win32.cbc"
ARCH: "mingw_x86"
- CERBERO_RUN_WRAPPER: "wine"
CERBERO_RUN_SUFFIX: ".exe"
build cerbero cross win32:
extends: '.cerbero mr'
variables:
CONFIG: "cross-win32.cbc"
- CERBERO_RUN_WRAPPER: "wine"
CERBERO_RUN_SUFFIX: ".exe"
@@ -249,14 +246,12 @@ cerbero deps cross-windows x86_64:
variables:
CONFIG: "cross-win64.cbc"
ARCH: "mingw_x86_64"
- CERBERO_RUN_WRAPPER: "wine"
CERBERO_RUN_SUFFIX: ".exe"
build cerbero cross win64:
extends: '.cerbero mr'
variables:
CONFIG: "cross-win64.cbc"
- CERBERO_RUN_WRAPPER: "wine"
CERBERO_RUN_SUFFIX: ".exe"
#
diff --git a/ci/cerbero_setup.sh b/ci/cerbero_setup.sh
index b13e85e9..09043e08 100755
--- a/ci/cerbero_setup.sh
+++ b/ci/cerbero_setup.sh
@@ -74,9 +74,9 @@ cerbero_package_and_check() {
$CERBERO $CERBERO_ARGS package --offline ${CERBERO_PACKAGE_ARGS} -o "$(pwd_native)" gstreamer-1.0
# Run gst-inspect-1.0 for some basic checks. Can't do this for cross-(android|ios)-universal, of course.
- if [[ $CONFIG != *universal* ]]; then
- $CERBERO $CERBERO_ARGS run $CERBERO_RUN_WRAPPER gst-inspect-1.0$CERBERO_RUN_SUFFIX --version
- $CERBERO $CERBERO_ARGS run $CERBERO_RUN_WRAPPER gst-inspect-1.0$CERBERO_RUN_SUFFIX
+ if [[ $CONFIG != *universal* ]] && [[ $CONFIG != *cross-win* ]]; then
+ $CERBERO $CERBERO_ARGS run gst-inspect-1.0$CERBERO_RUN_SUFFIX --version
+ $CERBERO $CERBERO_ARGS run gst-inspect-1.0$CERBERO_RUN_SUFFIX
fi
show_ccache_sum